.props-odds-engine,
.props-odds,
.props-odds-scope {
    --props-primary: #0066cc;
    --props-primary-hover: #0052a3;
    --props-primary-active: #004185;
    --props-accent: #009eff;
    --props-accent-hover: #007acc;
    --props-accent-active: #0062a3;
    --props-text-primary: #0f172a;
    --props-text-secondary: #475569;
    --props-text-muted: #64748b;
    --props-text-light: #94a3b8;
    --props-text-white: #ffffff;
    --props-bg-primary: #ffffff;
    --props-bg-secondary: #f8fafc;
    --props-bg-hover: #f1f5f9;
    --props-bg-active: #e2e8f0;
    --props-bg-dark: #1e293b;
    --props-border-light: #e2e8f0;
    --props-border-default: #cbd5e1;
    --props-border-dark: #94a3b8;
    --props-border-focus: rgba(0, 158, 255, 0.5);
    --props-success: #10b981;
    --props-success-light: #d1fae5;
    --props-warning: #f59e0b;
    --props-warning-light: #fef3c7;
    --props-error: #ef4444;
    --props-error-light: #fee2e2;
    --props-info: #3b82f6;
    --props-info-light: #dbeafe;
    --chip-text: var(--props-text-primary);
    --chip-text-light: var(--props-text-white);
    --chip-text-muted: var(--props-text-muted);
    --chip-bg: var(--props-bg-primary);
    --chip-bg-light: var(--props-bg-secondary);
    --chip-bg-hover: var(--props-bg-hover);
    --chip-bg-active: var(--props-accent);
    --chip-border: var(--props-border-light);
    --chip-border-hover: var(--props-border-default);
    --chip-border-active: var(--props-accent);
    --panel-bg: var(--props-bg-primary);
    --panel-border: var(--props-border-light);
    --panel-header-bg: var(--props-bg-secondary);
    --panel-shadow: 0 6px 14px rgba(2, 6, 23, 0.12);
    --props-font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --props-font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
    --props-text-xs: 11px;
    --props-text-sm: 12px;
    --props-text-base: 14px;
    --props-text-md: 16px;
    --props-text-lg: 18px;
    --props-text-xl: 20px;
    --props-text-2xl: 24px;
    --props-font-normal: 400;
    --props-font-medium: 500;
    --props-font-semibold: 600;
    --props-font-bold: 700;
    --props-leading-tight: 1.25;
    --props-leading-normal: 1.5;
    --props-leading-relaxed: 1.75;

    --props-space-0: 0;
    --props-space-1: 4px;
    --props-space-2: 8px;
    --props-space-3: 12px;
    --props-space-4: 16px;
    --props-space-5: 20px;
    --props-space-6: 24px;
    --props-space-8: 32px;
    --props-space-10: 40px;
    --props-space-12: 48px;

    --shadow-xs: 0 1px 2px rgba(2, 6, 23, 0.04);
    --shadow-sm: 0 1px 3px rgba(2, 6, 23, 0.04);
    --shadow-md: 0 2px 6px rgba(2, 6, 23, 0.08);
    --shadow-lg: 0 6px 14px rgba(2, 6, 23, 0.12);
    --shadow-xl: 0 10px 24px rgba(2, 6, 23, 0.16);
    --shadow-2xl: 0 20px 48px rgba(2, 6, 23, 0.20);
    --shadow-focus: 0 0 0 3px rgba(0, 158, 255, 0.16);
    --shadow-active: 0 4px 10px rgba(0, 158, 255, 0.26);
    --shadow-hover: var(--shadow-md);

    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 999px;
    --chip-radius: var(--radius-full);
    --panel-radius: 14px;
    --button-radius: var(--radius-lg);
    --input-radius: var(--radius-md);

    --transition-fast: 120ms ease;
    --transition-base: 150ms ease;
    --transition-slow: 250ms ease;
    --transition-slower: 350ms ease;
    --transition-colors: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);

    --transition-interactive: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), background var(--transition-base);

    --transition-shadow: box-shadow var(--transition-base);
    --transition-transform: transform var(--transition-fast);

    --filter-height: 32px;
    --filter-height-lg: 38px;
    --input-height: 40px;
    --button-height: 36px;
    --chip-height: var(--filter-height);
    --chip-height-lg: calc(var(--filter-height) + 6px);

    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
    --z-notification: 700;

    --breakpoint-xs: 320px;
    --breakpoint-sm: 375px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
}

.props-odds .chip {
    min-width: fit-content;
    font-family: var(--props-font-primary) !important;
    font-weight: var(--props-font-medium) !important;
    line-height: 1 !important;
    white-space: nowrap;
    border: 1px solid var(--chip-border) !important;
    border-radius: var(--chip-radius) !important;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.props-odds .chip:focus-visible {
    box-shadow: var(--shadow-focus) !important;
    outline: none !important;
}

.props-odds .chip .chip-count,
.props-odds .chip .badge {
    margin-left: auto;
    padding: 2px 6px;
    font-size: var(--props-text-xs) !important;
    font-weight: var(--props-font-semibold) !important;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

.props-odds .chip .chip-icon,
.props-odds .chip svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.props-odds .chip--large {
    height: var(--chip-height-lg);
    padding: 0 16px;
    font-size: 15px !important;
}

.props-odds .chip--small {
    height: 24px;
    padding: 0 10px;
    font-size: var(--props-text-sm) !important;
}

.props-odds .chip--square {
    border-radius: var(--radius-lg) !important;
}

.props-odds .chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: var(--props-space-2);
}

.props-odds .chips-container--scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
}

.props-odds .panel {
    position: absolute;
    top: 100%;
    z-index: var(--z-dropdown);
    display: grid;
    grid-template-rows:auto auto 1fr auto;
    width: 400px;
    max-height: 680px;
    margin-top: 8px;
    background: var(--panel-bg) !important;
    border: 1px solid var(--panel-border) !important;
    border-radius: var(--panel-radius) !important;
    box-shadow: var(--panel-shadow) !important;
    overflow: hidden;
}

.props-odds .panel-header {
    align-items: center;
    justify-content: space-between;
    background: var(--panel-header-bg);
    font-weight: var(--props-font-semibold);
}

.props-odds .panel-controls {
    gap: var(--props-space-2);
}

.props-odds .panel-content,
.props-odds .panel-list {
    overflow-y: auto;
    padding: var(--props-space-3);
}

.props-odds .panel-actions {
    display: flex;
    gap: var(--props-space-2);
    padding: var(--props-space-3) var(--props-space-4);
    border-top: 1px solid var(--panel-border);
    background: var(--panel-header-bg);
}

.props-odds .panel--wide {
    width: 480px;
}

.props-odds .panel--narrow {
    width: 320px;
}

.props-odds .panel--tall {
    max-height: 80vh;
}

@keyframes panelSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.props-odds .panel {
    animation: panelSlideDown 200ms ease-out;
}

.props-odds .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--props-space-2);
    height: var(--button-height);
    padding: 0 var(--props-space-4);
    font-family: var(--props-font-primary);
    font-size: var(--props-text-base);
    font-weight: var(--props-font-medium);
    line-height: 1;
    background: var(--props-bg-primary);
    color: var(--props-text-primary);
    border: 1px solid var(--props-border-default);
    border-radius: var(--button-radius);
    cursor: pointer;
    transition: var(--transition-interactive);
    outline: none;
    text-decoration: none;
}

.props-odds .btn:hover {
    background: var(--props-bg-hover);
    border-color: var(--props-border-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.props-odds .btn:active {
    transform: translateY(0);
}

.props-odds .btn:focus-visible {
    box-shadow: var(--shadow-focus);
}

.props-odds .btn--primary {
    background: var(--props-primary);
    color: white;
    border-color: var(--props-primary);
}

.props-odds .btn--primary:hover {
    background: var(--props-primary-hover);
    border-color: var(--props-primary-hover);
}

.props-odds .btn--ghost {
    background: transparent;
    border-color: transparent;
}

.props-odds .btn--ghost:hover {
    background: var(--props-bg-hover);
}

.props-odds input[type="text"],
.props-odds input[type="search"],
.props-odds input[type="number"],
.props-odds select {
    height: var(--input-height);
    padding: 0 var(--props-space-3);
    width: 100%;
    font-family: var(--props-font-primary);
    font-size: var(--props-text-base);
    background-color: var(--props-bg-primary);
    color: var(--props-text-primary);
    border: 1px solid var(--props-border-light);
    border-radius: var(--input-radius);
    transition: var(--transition-colors);
    outline: none;
}

.props-odds input:hover,
.props-odds select:hover {
    border-color: var(--props-border-default);
}

.props-odds input:focus,
.props-odds select:focus {
    border-color: var(--props-primary);
    box-shadow: var(--shadow-focus);
}

.props-odds .flex-center {
    justify-content: center !important;
}

.props-odds .flex-center, .props-odds .flex-between {
    display: flex !important;
    align-items: center !important;
}

.props-odds .flex-between {
    justify-content: space-between !important;
}

.props-odds .flex-start {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.props-odds .gap-1 {
    gap: var(--props-space-1) !important;
}

.props-odds .gap-2 {
    gap: var(--props-space-2) !important;
}

.props-odds .gap-3 {
    gap: var(--props-space-3) !important;
}

.props-odds .gap-4 {
    gap: var(--props-space-4) !important;
}

.props-odds .p-2 {
    padding: var(--props-space-2) !important;
}

.props-odds .p-3 {
    padding: var(--props-space-3) !important;
}

.props-odds .p-4 {
    padding: var(--props-space-4) !important;
}

.props-odds .px-3 {
    padding-left: var(--props-space-3) !important;
    padding-right: var(--props-space-3) !important;
}

.props-odds .px-4 {
    padding-left: var(--props-space-4) !important;
    padding-right: var(--props-space-4) !important;
}

.props-odds .py-2 {
    padding-top: var(--props-space-2) !important;
    padding-bottom: var(--props-space-2) !important;
}

.props-odds .py-3 {
    padding-top: var(--props-space-3) !important;
    padding-bottom: var(--props-space-3) !important;
}

.props-odds .text-sm {
    font-size: var(--props-text-sm) !important;
}

.props-odds .text-base {
    font-size: var(--props-text-base) !important;
}

.props-odds .text-lg {
    font-size: var(--props-text-lg) !important;
}

.props-odds .font-medium {
    font-weight: var(--props-font-medium) !important;
}

.props-odds .font-semibold {
    font-weight: var(--props-font-semibold) !important;
}

.props-odds .font-bold {
    font-weight: var(--props-font-bold) !important;
}

.props-odds .text-muted {
    color: var(--props-text-muted) !important;
}

.props-odds .text-primary {
    color: var(--props-text-primary) !important;
}

.props-odds .rounded {
    border-radius: var(--radius-md) !important;
}

.props-odds .rounded-lg {
    border-radius: var(--radius-lg) !important;
}

.props-odds .rounded-full {
    border-radius: var(--radius-full) !important;
}

.props-odds .shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.props-odds .shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.props-odds .shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.props-odds .hidden {
    display: none !important;
}

.props-odds .invisible {
    visibility: hidden !important;
}

.props-odds .chip:hover,
.props-odds button:hover,
.props-odds .props-market-filter .props-quick-chips .chip:hover,
.props-odds .props-more-panel .market-pill:hover,
.props-odds .game-card:hover {
    transform: none !important;
}

.props-odds .props-more-panel .panel-list .market-list .market-pill,
.props-odds .props-more-panel .panel-list .market-list button.market-pill,
.props-odds-scope .props-more-panel .panel-list .market-list .market-pill {
    padding: 7px 14px !important;
    box-sizing: border-box !important;
    -webkit-padding-before: 7px !important;
    -webkit-padding-after: 7px !important;
    -webkit-padding-start: 14px !important;
    -webkit-padding-end: 14px !important;
}

.props-odds .props-matchups-panel {
    padding: initial !important;
}


.props-odds .props-matchups-panel .panel-controls, .props-odds .props-matchups-panel .panel-filters {
    padding: 12px 16px !important;
}

.props-odds .props-more-panel {
    padding: 0 !important;
}

.props-odds .props-more-panel .panel-header {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.props-odds .props-more-panel .chips {
    padding: 12px !important;
    gap: 8px !important;
}

.props-odds .props-more-panel .tabs {
    padding: 8px 12px !important;
    gap: 8px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.props-odds .props-more-panel .tabs .tab {
    padding: 6px 12px !important;
    font-size: 13px !important;
    border-radius: 16px;
}

.props-odds .props-more-panel .chip .chip-count {
    margin-left: auto !important;
    font-size: 12px !important;
    padding: 2px 6px !important;
    border-radius: 12px;
    background-color: rgba(0, 0, 0, 0.08);
}

.props-odds .props-market-filter .props-quick-chips .chip .chip-count {
    padding: 0 6px !important;
}

.props-odds-scope input[type=checkbox] {
    display: none !important;
}

.props-odds .props-market-filter .filter-chevron,
.props-odds .props-market-filter .props-matchups-button .filter-chevron,
.props-odds-scope .props-select .chevron {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-left: 0 !important;
}

body .props-odds-engine .props-odds .props-more-panel .tabs,
body .props-odds .props-more-panel .tabs {
    padding: 6px 12px !important;
    gap: 5px !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

body .props-odds-engine .props-odds .props-more-panel .tabs .tab,
body .props-odds-engine .props-odds .props-more-panel .chips .chip,
body .props-odds-engine .props-odds .props-more-panel .chip,
body .props-odds-engine .props-odds-scope .props-more-panel .tabs .tab,
body .props-odds-engine .props-odds-scope .props-more-panel .chips .chip,
body .props-odds .props-more-panel .tabs .tab,
body .props-odds .props-more-panel .tabs button.tab,
body .props-odds .props-more-panel .chips .chip,
body .props-odds .props-more-panel .chips button.chip,
body .props-odds .props-more-panel .chip,
body .props-odds .props-more-panel button.chip,
body .props-odds-scope .props-more-panel .tabs .tab,
body .props-odds-scope .props-more-panel .chips .chip,
.props-more-panel .tabs .tab,
.props-more-panel .chips .chip {
    height: 38px !important;
    padding: 0 14px !important;
    font-size: 13px !important;
    line-height: 38px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 1px !important;
    min-height: 38px !important;
    max-height: 38px !important;
}

:where(.props-odds, .props-odds-scope) {
    --frozen-player: 182px !important;
    --frozen-game: 0px !important;
    --props-frozen-offset: 182px;
    --props-sportsbook-count: 6 !important;
    --props-col-min: 90px;
    --props-col-ideal: 90px;
    --props-col-max: 90px;
    --props-table-min: 1400px !important;
    --props-table-max: var(--props-table-min) !important;
    --props-scrollbar-size: 12px !important;
    --props-brand-blue: #2563eb;
    --props-brand-cyan: #009eff;
    --props-accent: var(--props-brand-cyan);
    --props-brand-red: #ef4444;
    --props-brand-orange: #f59e0b;
    --props-surface: #ffffff;
    --props-surface-muted: #f8fafc;
    --props-surface-tint: #f0f9ff;
    --props-ring: rgba(0, 158, 255, 0.18);
    --props-text-strong: #0f172a;
    --props-text-default: #111827;
    --props-text-muted: #6b7280;
    --props-bg: #ffffff;
    --props-bg-muted: #f7f8fa;
    --props-border: #e5e7eb;
    --props-drawer-surface: #f4f7fb;
    --props-drawer-surface-strong: rgba(240, 249, 255, 0.98);
    --props-drawer-border: rgba(37, 99, 235, 0.16);
    --props-drawer-shadow: 0 18px 40px rgba(15, 23, 42, .18), 0 8px 20px rgba(15, 23, 42, .12);
}

.props-odds-container {
    overflow-x: auto;
    font-size: 15px;
}

.props-odds-container.enhanced {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.props-odds-demo .page-header {
    background: var(--props-bg);
    color: var(--props-text-strong);
    padding: 28px 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--props-border);
}

.props-odds-demo .page-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.props-odds-demo .page-header h1 {
    margin: 0 0 6px 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.props-odds-demo .page-header p {
    margin: 0;
    color: var(--props-text-muted);
    font-size: 14px;
}

.props-odds-demo .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.props-odds-demo .market-highlights {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.props-odds-demo .market-highlights .highlight-card {
    padding: 18px;
    border-radius: 12px;
    background: var(--props-surface);
    border: 1px solid var(--props-border);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.08);
}

.props-odds-demo .market-highlights .highlight-card h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--props-text-strong);
}

.props-odds-demo .market-highlights .highlight-card p {
    margin: 0;
    font-size: 14px;
    color: var(--props-text-muted);
}

.props-odds-demo .shortcode-examples {
    margin: 40px 0;
    padding: 20px;
    background: var(--props-surface-muted);
    border-radius: 12px;
    border: 1px solid var(--props-border);
}

.props-odds-demo .shortcode-examples pre {
    margin: 0;
    padding: 16px;
    background: #0f172a;
    color: #f8fafc;
    border-radius: 10px;
    overflow-x: auto;
    font-size: 13px;
}

.props-odds-scope .props-comparison-container > .table-wrap {
    display: contents !important;
    overflow: visible !important;
    position: static !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    max-width: none !important;
    z-index: auto !important;
}

.props-odds-engine {
    line-height: 1.5;
}

.props-odds .props-market-filter {
    --filter-height: 36px;
    --filter-border: #e2e8f0;
    --filter-radius: 6px;
    --filter-bg: #ffffff;
    --filter-gap: 20px;
    --props-text: #0f172a;
    --props-text-muted: #64748b;
    --props-border-light: #e2e8f0;
    --props-bg-surface: #f8fafc;
    --props-radius-pill: 999px;
    padding: 8px 15px 17px 0px;
    gap: var(--filter-gap) !important;
    border: none;
}

.props-odds .props-primary-selects {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    width: auto;
    display: none;
}

.props-odds .props-primary-selects .props-select {
    flex: 0 0 auto;
    min-width: auto;
    width: auto;
}

.props-odds #props-league .props-select-toggle,
.props-odds #props-weekdate .props-select-toggle {
    width: 100% !important;
    min-width: 0 !important;
    padding: 0 12px;
}


.props-odds .props-market-filter.is-sticky {
    position: sticky;
    top: var(--props-sticky-top, 72px);
    z-index: 20;
    background: var(--props-bg);
}

.props-odds .props-market-filter .filter-label {
    display: none !important;
}

.props-odds.props-odds-scope .props-market-filter .props-positions-filter > .props-select {
    display: inline-block !important;
}

.props-odds .props-market-filter #props-market {
    display: none !important;
}

.props-odds .props-market-filter .props-quick-chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px !important;
    align-items: center !important;
    order: 900;
    flex-basis: 100%;
    width: 100% !important;
    margin-top: 6px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.props-odds .props-market-filter .props-quick-chips .chip:hover,
.props-odds .props-market-filter .props-category-chips .chip:hover,
.props-odds .props-more-panel .category-chips .chip:hover,
.props-odds .props-more-panel .chips .chip:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .08);
    transform: translateY(-1px);
}

.props-odds .props-market-filter .props-quick-chips .chip:focus-visible,
.props-odds .props-market-filter .props-category-chips .chip:focus-visible,
.props-odds .props-more-panel .category-chips .chip:focus-visible,
.props-odds .props-more-panel .chips .chip:focus-visible,
.props-matchups-panel .panel-filters .status-chips .chip:focus-visible {
    outline: none;
    border-color: #94a3b8 !important;
    box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.16);
}

.props-odds .props-market-filter .props-quick-chips .chip {
    height: calc(var(--filter-height) + 6px) !important;
    padding: 0 16px !important;
    font-size: 14px !important;
}

.props-odds .props-market-filter .props-quick-chips .chip.loading,
.props-odds .props-market-filter .props-quick-chips .chip.loading:focus-visible {
    border-color: var(--props-accent) !important;
    box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.24);
}

.props-odds .props-market-filter .props-quick-chips .chip.active,
.props-odds .props-market-filter .props-quick-chips .chip[aria-pressed="true"] {
    background: var(--props-accent) !important;
    color: #ffffff !important;
    border-color: var(--props-accent) !important;
    box-shadow: 0 4px 10px rgba(0, 158, 255, 0.26) !important;
}

.props-odds #props-more-toggle,
.props-odds-scope #props-more-toggle {
    display: inline-flex;
    align-items: center !important;
}

.props-odds #props-more-toggle .chip-icon,
.props-odds-scope #props-more-toggle .chip-icon {
    margin-right: 8px;
    opacity: .75;
}

.props-odds #props-more-toggle[aria-pressed="true"] .chip-icon,
.props-odds-scope #props-more-toggle[aria-pressed="true"] .chip-icon {
    opacity: 1;
}

.props-odds .props-market-filter .props-quick-chips .chip,
.props-odds .props-market-filter .props-category-chips .chip,
.props-odds .props-more-panel .category-chips .chip {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.props-odds .props-market-filter .props-quick-chips .chip .chip-label,
.props-odds .props-market-filter .props-category-chips .chip .chip-label,
.props-odds .props-more-panel .category-chips .chip .chip-label {
    flex: 0 1 auto;
}

.props-odds .props-market-filter .props-quick-chips .chip .chip-count,
.props-odds .props-market-filter .props-category-chips .chip .chip-count,
.props-odds .props-more-panel .category-chips .chip .chip-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    border-radius: var(--props-radius-pill) !important;
    background: rgba(15, 23, 42, 0.12);
    color: var(--props-text) !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    transition: background 0.12s ease-out, color 0.12s ease-out;
}

.props-odds .props-market-filter .props-quick-chips .chip.active .chip-count,
.props-odds .props-market-filter .props-quick-chips .chip[aria-pressed="true"] .chip-count {
    background: rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
}

.props-odds .props-market-filter .props-category-chips .chip.active .chip-count,
.props-odds .props-market-filter .props-category-chips .chip[aria-selected="true"] .chip-count {
    background: rgba(59, 130, 246, 0.22);
    color: var(--props-text) !important;
}

.props-odds .props-more-panel .category-chips .chip.active .chip-count,
.props-odds .props-more-panel .category-chips .chip[aria-selected="true"] .chip-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
}

.props-odds .props-market-filter .props-category-chips {
    display: flex;
    gap: 6px !important;
    flex-wrap: wrap;
    order: 800;
    width: 100% !important;
    margin-top: 8px;
}

.props-odds .props-market-filter .props-category-chips .chip {
    padding: 0 12px;
    border-radius: 10px !important;
    border-color: var(--props-border-light) !important;
    background: var(--props-bg-surface) !important;
}

.props-odds .props-market-filter .props-category-chips .chip:hover {
    background: #f1f5f9 !important;
}

.props-odds .props-market-filter .props-category-chips .chip.active,
.props-odds .props-market-filter .props-category-chips .chip[aria-selected="true"] {
    background: #ffffff !important;
    color: var(--props-text) !important;
    border-color: var(--props-accent) !important;
    box-shadow: 0 0 0 2px rgba(0, 158, 255, 0.15) inset, 0 1px 2px rgba(2, 6, 23, 0.06);
    font-weight: 800;
}

.props-odds .props-market-filter .props-category-sections {
    width: 100% !important;
    order: 1000;
}

.props-odds .props-market-filter .props-category-sections .category-section {
    margin-top: 6px;
}

.props-odds .props-market-filter .props-category-sections .section-title {
    font-weight: 800;
    font-size: 13px;
    color: #334155;
    margin: 6px 0;
}

.props-odds .props-market-filter .props-category-sections .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.props-odds .props-matchups-panel .search-input {
    position: relative;
}

.props-odds .props-more-panel .search-input {
    padding: 0;
    margin: 0;
    order: 2;
}

.props-odds .props-market-filter .props-more-filter {
    position: relative;
    z-index: 1000;
}

.props-odds .props-market-filter .props-more-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    z-index: 10000;
    min-width: 420px;
    width: 420px;
    max-height: min(80vh, 760px);
    grid-template-rows:auto auto 1fr;
    background: white;
    border: 1px solid var(--props-border-light);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.props-odds .props-market-filter .props-more-filter.open .props-more-panel {
    display: grid !important;
}

.props-odds .props-more-panel .panel-controls {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid #eef2f7;
    grid-row: 3;
}

.props-odds .props-more-panel .category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.props-odds .props-more-panel .category-chips .chip.active,
.props-odds .props-more-panel .category-chips .chip[aria-selected="true"],
.props-odds .props-more-panel .chips .chip.active,
.props-odds .props-more-panel .chips .chip[aria-pressed="true"] {
    background: var(--props-accent) !important;
    color: #ffffff !important;
    border-color: var(--props-accent) !important;
}

.props-odds .props-more-panel .panel-list {
    grid-row: 4;
    padding: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 500px;
    flex: 1;
}

.props-odds .props-more-panel .panel-list .market-list {
    display: grid;
    grid-auto-rows: minmax(38px, auto);
    gap: 10px;
}

.props-odds .props-more-panel .panel-list .market-list .market-pill {
    width: 100% !important;
    height: 38px;
    padding: 7px 14px !important;
    border: 1px solid var(--filter-border) !important;
    border-radius: var(--props-radius-pill) !important;
    background: #ffffff !important;
    color: var(--props-text) !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    box-shadow: 0 1px 1px rgba(2, 6, 23, 0.04) !important;
    cursor: pointer;
    transition: border-color .12s ease-out, box-shadow .12s ease-out, transform .08s ease-out, background .12s ease-out;
    display: flex;
    align-items: center !important;
    justify-content: flex-start;
    gap: 10px;
    text-align: left !important;
}

.props-odds .props-more-panel .panel-list .market-list .market-pill .market-label {
    flex: 1 1 auto;
    text-align: left !important;
}

.props-odds .props-more-panel .panel-list .market-list .market-pill .market-count {
    flex: 0 0 auto;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    min-width: 26px;
    height: 24px;
    padding: 4px 8px;
    border-radius: var(--props-radius-pill);
    background: rgba(15, 23, 42, 0.10) !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    color: var(--props-text) !important;
    transition: background 0.12s ease-out, color 0.12s ease-out;
}

.props-odds .props-more-panel .panel-list .market-list .market-pill[aria-pressed="true"] .market-count {
    background: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

.props-odds .props-more-panel .panel-list .market-list .market-pill:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .08);
    transform: translateY(-1px);
}

.props-odds .props-more-panel .panel-list .market-list .market-pill:focus-visible {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.16);
}

.props-odds .props-more-panel .panel-list .market-list .market-pill[aria-pressed="true"] {
    background: var(--props-accent) !important;
    color: #fff !important;
    border-color: var(--props-accent) !important;
}

.props-odds .props-more-panel .category-section {
    margin-bottom: 12px;
}

.props-odds .props-more-panel .category-section .section-title {
    font-weight: 800;
    font-size: 13px;
    color: #334155;
    margin: 6px 0;
}

.props-odds .props-more-panel .category-section .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.props-odds .props-market-filter .props-game-chips {
    display: flex;
    gap: 6px !important;
    flex-wrap: wrap;
    order: 1001;
    flex-basis: 100%;
    width: 100% !important;
    margin-top: 2px;
}

.props-odds .props-market-filter .props-quick-chips #props-gamechips-toggle {
    order: 9999;
    flex-basis: 100%;
    margin-top: 8px;
    position: relative;
    font-weight: 800;
    background: var(--props-bg-surface);
    border-color: #dbe3ef;
}

.props-odds .props-market-filter .props-quick-chips #props-gamechips-toggle::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23677689" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M19.5 8.25l-7.5 7.5-7.5-7.5"/></svg>') no-repeat center/16px 16px;
}

.props-odds .props-market-filter .props-game-chips[hidden] {
    display: none !important;
}

.props-odds .props-market-filter .props-game-chips .game-card {
    display: grid;
    grid-template-columns:1fr auto;
    grid-template-rows:auto auto;
    gap: 6px 10px;
    align-items: center !important;
    min-width: 190px;
    padding: 8px 10px;
    border: 1px solid var(--filter-border) !important;
    border-radius: 12px;
    background: var(--props-surface);
    color: var(--props-text) !important;
    box-shadow: 0 1px 2px rgba(2, 6, 23, 0.04);
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease, background .15s ease;
}

.props-odds .props-market-filter .props-game-chips .game-card:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 4px 12px rgba(2, 6, 23, .08);
    transform: translateY(-1px);
}

.props-odds .props-market-filter .props-game-chips .game-card:focus-visible {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.16);
}

.props-odds .props-market-filter .props-game-chips .game-card.active,
.props-odds .props-market-filter .props-game-chips .game-card[aria-pressed="true"] {
    background: var(--props-surface-tint);
    border-color: #94a3b8;
}

.props-odds .props-market-filter .props-game-chips .game-card .title {
    grid-column: 1 / -1;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
}

.props-odds .props-market-filter .props-game-chips .game-card .meta {
    grid-column: 1 / -1;
    display: flex;
    align-items: center !important;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
}

.props-odds .props-market-filter .props-game-chips .game-card .status {
    padding: 1px 6px;
    border-radius: var(--props-radius-pill);
    border: 1px solid var(--props-border-light);
    background: #f1f5f9;
    color: var(--props-text) !important;
    font-weight: 700;
}

.props-odds .props-market-filter .props-game-chips .game-card .status.live {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    border-color: rgba(239, 68, 68, 0.28);
}

.props-odds .props-market-filter .props-game-chips .game-card .status.final {
    background: #f1f5f9;
    color: #6b7280;
}

.props-odds .props-market-filter .props-game-chips .game-card .count {
    margin-left: auto;
    background: var(--props-accent) !important;
    color: #fff !important;
    padding: 2px 6px;
    border-radius: var(--props-radius-pill);
    font-weight: 800;
    font-size: 11px;
}

.props-odds .props-market-filter .props-game-chips .game-card .time {
    color: #334155;
}

.props-market-filter label {
    font-weight: 600;
    margin-right: 6px;
    color: var(--props-text-strong);
    font-size: 13px;
}

.props-odds .props-market-filter .filter-label {
    font-weight: 600;
    font-size: 15px;
}


.props-odds .props-market-filter .filter-control:focus,
.props-odds .props-market-filter .filter-chip:focus {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.props-odds .props-market-filter .filter-control:hover,
.props-odds .props-market-filter .filter-chip:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 1px 2px rgba(2, 6, 23, .06);
}

.props-odds .props-market-filter .props-matchups-filter {
    position: relative;
    order: 1000;
}


.props-odds .props-market-filter .props-matchups-button::after {
    display: none;
}

.props-odds .props-market-filter .props-matchups-button:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 1px 2px rgba(2, 6, 23, .06);
}

.props-matchups-button .badge {
    background: var(--props-accent) !important;
    color: #fff !important;
    border-radius: var(--props-radius-pill);
    padding: 2px 6px;
    font-size: 12px;
    font-weight: 700;
}

.props-matchups-button #props-matchups-total + #props-matchups-count {
    margin-left: 6px;
}


.props-matchups-filter {
    position: relative;
}

.props-matchups-panel {
    position: absolute;
    top: 110%;
    left: 0;
    width: 400px;
    max-height: 680px;
    grid-template-rows:auto auto 1fr auto;
    border: 1px solid var(--props-drawer-border, #e6edf5);
    display: none;
}

.props-matchups-panel .panel-header, .props-more-panel .panel-header, .props-filters-panel .panel-header {
    position: relative;
}

.props-matchups-panel .panel-close-button, .props-more-panel .panel-close-button, .props-filters-panel .panel-close-button {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: var(--props-accent);
    color: #ffffff;
    border-radius: var(--props-radius-pill);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0, 158, 255, 0.26);
    transition: filter .12s ease-out;
}

.props-matchups-panel .panel-close-button:hover, .props-more-panel .panel-close-button:hover, .props-filters-panel .panel-close-button:hover {
    filter: brightness(0.95);
}

.props-matchups-panel .panel-close-button:focus-visible, .props-more-panel .panel-close-button:focus-visible, .props-filters-panel .panel-close-button:focus-visible {
    outline: 2px solid var(--props-accent);
    outline-offset: 2px;
}

.props-matchups-panel .panel-header {
    display: grid;
    grid-template-columns:1fr;
    gap: 8px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, .25);
    border-top-left-radius: var(--filter-radius) !important;
    border-top-right-radius: var(--filter-radius) !important;
}

.props-matchups-panel .panel-title {
    font-weight: 800;
    color: var(--props-text) !important;
    font-size: 15px;
    letter-spacing: -.01em;
}

.props-matchups-panel .panel-controls {
    display: grid;
    grid-template-columns:1fr;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f7;
    font-size: 13px;
    color: #334155;
}

.props-matchups-panel .panel-controls label {
    display: flex;
    align-items: center !important;
    gap: 8px;
    font-weight: 600;
}

.props-matchups-panel .panel-filters {
    display: grid;
    grid-template-columns:1fr;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f7;
}

.props-odds .props-market-filter .props-matchups-panel .panel-filters .status-chips {
    display: flex;
    gap: 6px !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


.props-matchups-panel .panel-filters .search-input input[type="search"], .props-more-panel .panel-controls .search-input input[type="search"] {
    height: 36px;
    width: 100% !important;
    border: 1px solid #e6edf5;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px !important;
    background: var(--props-surface-muted);
}

.props-more-panel .panel-controls .search-input input[type="search"] {
    padding-left: 40px;
}

.props-matchups-panel .search-input input[type="search"],
.props-more-panel .search-input input[type="search"],
.props-filters-panel .search-input input[type="search"] {
    font-size: 14px !important;
}

.props-more-panel .panel-controls .search-input input[type="search"]::placeholder {
    color: var(--props-text-muted);
}

.props-odds .props-market-filter .props-matchups-panel .panel-list {
    overflow: auto;
    padding: 10px 14px !important;
    display: grid;
    grid-template-columns:1fr;
}

.props-matchups-panel .panel-list .matchup-item {
    display: block;
    padding: 0;
    color: var(--props-text) !important;
    font-size: 14px !important;
    border: none;
}

.props-matchups-panel .panel-list .matchup-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.props-odds .props-market-filter .props-matchups-panel .panel-list .matchup-item span.matchup-item-content {
    display: grid;
    grid-template-columns:auto auto auto 1fr;
    align-items: center !important;
    justify-items: start;
    column-gap: 6px !important;
    padding: 14px 22px !important;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, .2);
    background: #ffffff;
    font-weight: 600;
    color: var(--props-text) !important;
    font-size: 13px;
    line-height: 1.35;
    min-height: 52px;
    box-shadow: none;
    transition: border-color .12s ease, box-shadow .12s ease;
}

.props-matchups-panel .matchup-item span.matchup-item-content:hover,
.props-matchups-panel .matchup-item span.matchup-item-content:focus-within {
    border-color: #cbd5e1 !important;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .08);
}

.props-matchups-panel .matchup-item span.matchup-item-content .team-cell {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px;
    font-weight: 700;
    letter-spacing: 0.01em;
    min-width: 0;
    text-transform: uppercase;
}

.props-matchups-panel .matchup-item span.matchup-item-content .team-cell img,
.props-matchups-panel .matchup-item span.matchup-item-content .team-cell .team-logo-fallback {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    padding: 0;
}

.props-matchups-panel .matchup-item span.matchup-item-content .team-cell img {
    object-fit: contain;
    box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.35);
}

.props-matchups-panel .matchup-item span.matchup-item-content .team-cell .team-logo-fallback {
    letter-spacing: 0.02em;
}

.props-matchups-panel .matchup-item span.matchup-item-content .team-cell .team-code {
    font-size: 14px !important;
    color: inherit;
    line-height: 1;
}

.props-matchups-panel .matchup-item span.matchup-item-content .team-separator {
    font-size: 12px;
    font-weight: 700;
    color: var(--props-text-muted);
    justify-self: center;
}

.props-matchups-panel .matchup-item span.matchup-item-content .kickoff {
    justify-self: end;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    font-variant-numeric: tabular-nums;
    text-transform: uppercase;
}

.props-matchups-panel .matchup-item span.matchup-item-content .kickoff.is-empty {
    opacity: 0;
}


.props-matchups-panel .panel-list .matchup-item input[type="checkbox"]:checked + span {
}

.props-matchups-panel .panel-list .matchup-item input[type="checkbox"]:checked + span .matchup-teams .team .team-code {
    color: #ffffff !important;
}

.props-matchups-panel .panel-list .matchup-item input[type="checkbox"]:checked + span .matchup-teams .team .team-logo-fallback {
    background: rgba(15, 23, 42, 0.15);
    color: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.props-matchups-panel .panel-list .matchup-item.completed {
    opacity: .6;
}

.props-matchups-panel .panel-list .matchup-item:hover {
    background: transparent;
    border-radius: 10px;
}

.props-matchups-panel input[type="checkbox"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #fff;
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: all .15s ease;
}

.props-matchups-panel input[type="checkbox"]:hover {
    border-color: #a6b3c6;
    box-shadow: 0 1px 2px rgba(2, 6, 23, .08);
}

.props-matchups-panel input[type="checkbox"]:checked {
    border-color: var(--props-brand-cyan);
    background: var(--props-brand-cyan);
}

.props-matchups-panel input[type="checkbox"]:checked::after {
    content: '';
    width: 10px;
    height: 10px;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white"><path fill-rule="evenodd" d="M16.704 5.29a1 1 0 010 1.415l-7.5 7.5a1 1 0 01-1.415 0l-3.5-3.5A1 1 0 015.29 9.29l2.793 2.793 6.793-6.793a1 1 0 011.415 0z" clip-rule="evenodd"/></svg>') no-repeat center / contain;
    background: #fff;
    display: block;
}

.props-matchups-panel .matchup-item input[type="checkbox"]:checked + span {
    font-weight: 700;
}

.props-matchups-panel .matchup-item span .kickoff {
    margin-left: 8px !important;
    font-weight: 700 !important;
    color: var(--props-text-muted) !important;
    white-space: nowrap !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center !important;
}

.props-matchups-panel .matchup-item input[type="checkbox"]:checked + span .kickoff {
    color: inherit !important;
    background: transparent !important;
    border: none !important;
}

.props-matchups-panel .panel-actions,
.props-more-panel .panel-actions,
.props-filters-panel .panel-actions {
    align-items: center !important;
    border-top: 1px solid rgba(148, 163, 184, .25);
    position: sticky;
    bottom: 0;
    backdrop-filter: blur(6px);
}

.props-matchups-panel .panel-actions button,
.props-more-panel .panel-actions button,
.props-filters-panel .panel-actions button {
    border-radius: var(--props-radius-pill);
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.props-matchups-panel .panel-actions .ghost,
.props-more-panel .panel-actions .ghost,
.props-filters-panel .panel-actions .ghost {
    background: transparent;
    color: var(--props-text-muted);
    border: none;
    font-weight: 500 !important;
    padding: 0;
    min-width: 0;
    justify-content: flex-start;
    height: auto;
    line-height: 1.2;
}

.props-matchups-panel .panel-actions .ghost:hover,
.props-more-panel .panel-actions .ghost:hover,
.props-filters-panel .panel-actions .ghost:hover {
    color: #475569;
    text-decoration: underline;
}

.props-matchups-panel .panel-actions .primary,
.props-more-panel .panel-actions .primary,
.props-filters-panel .panel-actions .primary {
    border: 1px solid var(--props-accent);
    justify-content: center;
    width: 100% !important;
}

.props-matchups-panel .panel-actions .primary:hover,
.props-more-panel .panel-actions .primary:hover,
.props-filters-panel .panel-actions .primary:hover {
    filter: brightness(0.97);
}

.props-matchups-panel .panel-actions .primary:focus-visible,
.props-more-panel .panel-actions .primary:focus-visible,
.props-filters-panel .panel-actions .primary:focus-visible,
.props-matchups-panel .panel-actions .ghost:focus-visible,
.props-more-panel .panel-actions .ghost:focus-visible,
.props-filters-panel .panel-actions .ghost:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--props-ring);
}

.props-odds .props-market-filter .props-matchups-panel .panel-actions .primary {
    background: var(--props-accent) !important;
    color: #fff !important;
    border-color: var(--props-accent) !important;
    box-shadow: 0 8px 20px rgba(0, 158, 255, 0.22) !important;
}

.props-search-wrap {
    display: none;
}

.props-odds .props-market-filter .filter-label {
    font-weight: 700;
    color: #111827;
    margin-right: 2px;
}

.props-odds .props-market-filter .props-search-wrap {
    position: relative;
    order: 1000;
    flex: 0 0 auto;
    width: auto;
    margin-left: 0;
    margin-right: 0;
}

.props-odds .props-market-filter .props-search-wrap::before {
    content: none !important;
    display: none !important;
}

.props-odds .props-market-filter .props-search-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    width: var(--filter-height);
    min-width: var(--filter-height);
    padding: 0;
    border: 1px solid var(--filter-border) !important;
    border-radius: var(--filter-radius) !important;
    background: var(--filter-bg) !important;
    cursor: pointer;
}

.props-odds .props-market-filter .props-search-wrap.open .props-search-button {
    background: var(--filter-bg) !important;
}

.props-odds .props-market-filter .props-search-panel[hidden] {
    display: none !important;
}

.props-odds .props-market-filter .props-search-panel {
    display: none;
    margin-left: 0;
}

.props-odds .props-market-filter .props-search-wrap input[type="search"] {
    padding-left: 40px;
    min-width: 240px;
    width: clamp(200px, 20vw, 300px);
    height: var(--filter-height);
    border: 1px solid var(--filter-border) !important;
    border-radius: var(--filter-radius) !important;
    background-color: var(--filter-bg) !important;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23677689" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>');
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 16px 16px;
}

.props-odds.props-odds-scope .props-market-filter input#props-player-filter[type="search"] {
    padding-left: 40px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23677689" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: 12px center !important;
    background-size: 16px 16px !important;
}

.props-odds .props-market-filter .props-search-wrap input[type="search"]::placeholder {
    color: #9aa3af;
    opacity: 1;
}


.props-odds .props-market-filter .props-search-panel .props-search-cancel {
    display: none;
    height: var(--filter-height);
    padding: 0 8px;
    border: 1px solid var(--filter-border) !important;
    border-radius: var(--filter-radius) !important;
    background: var(--filter-bg) !important;
    color: var(--filter-fg, #677689);
    cursor: pointer;
    min-width: var(--filter-height);
}

.props-odds .props-market-filter .props-matchups-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.props-odds .props-market-filter .props-search-wrap input[type="search"]:focus,
.props-odds .props-market-filter .props-matchups-button:focus-visible,
.props-odds .props-market-filter .props-filters-button:focus-visible,
.props-odds .props-market-filter .props-select-toggle:focus-visible,
.props-odds .props-market-filter .filter-control:focus {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.props-odds.props-odds-scope .props-market-filter .props-select .props-select-toggle,
.props-odds.props-odds-scope .props-market-filter button#props-matchups-toggle.props-matchups-button,
.props-odds.props-odds-scope .props-market-filter button.filter-control.props-matchups-button,
.props-odds.props-odds-scope .props-market-filter input#props-player-filter[type="search"],
.props-odds.props-odds-scope .props-market-filter .props-search-wrap input[type="search"] {
    height: var(--filter-height);
    border: 1px solid var(--filter-border) !important;
    border-radius: var(--filter-radius) !important;
    background-color: var(--filter-bg) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--props-text) !important;
    box-shadow: 0 1px 1px rgba(2, 6, 23, 0.04) !important;
}

.props-odds.props-odds-scope .props-market-filter button#props-matchups-toggle.props-matchups-button {
    padding-right: 36px !important;
    padding-left: 12px !important;
}

.props-odds.props-odds-scope .props-select-menu,
.props-odds.props-odds-scope .props-market-filter .props-matchups-panel {
    background: var(--filter-bg) !important;
    border-radius: var(--filter-radius) !important;
    font-size: 14px !important;
    color: var(--props-text) !important;
}

.props-odds .props-market-filter .filter-chevron {
    display: inline-flex !important;
    align-items: center !important;
    pointer-events: none;
    color: #475569;
}

.props-odds .props-market-filter .props-select-toggle .filter-chevron {
    margin-left: auto;
}

.props-odds .props-market-filter .props-matchups-button .filter-chevron {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
}

.props-odds .props-market-filter .props-select-toggle.is-static .filter-chevron {
    display: none;
}

.props-odds .props-market-filter .filter-chevron-icon {
    width: 14px !important;
    height: 14px !important;
}

.props-odds .props-market-filter .props-select-toggle svg, .props-filters-button svg, .props-odds .props-market-filter .props-matchups-button svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
}

.props-odds .props-market-filter .props-filters-filter {
    position: relative;
    order: 1000;
    display: none;
}

.props-odds .props-market-filter .props-filters-button {
    background: var(--filter-bg) !important;
    color: var(--props-text) !important;
    border: 1px solid var(--filter-border) !important;
    padding: 0 12px;
    height: var(--filter-height);
    line-height: 1;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px;
    box-shadow: 0 1px 1px rgba(2, 6, 23, 0.04) !important;
    border-radius: var(--filter-radius) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

.props-odds .props-market-filter .props-filters-filter.open .props-filters-panel {
    display: grid;
}

.props-odds .props-filters-panel .panel-list {
    padding: 16px;
    display: grid;
    gap: 16px;
}

.props-odds .props-filters-panel .category-section {
    margin-bottom: 4px;
    text-align: center;
}

.props-odds .props-filters-panel .category-section .section-title {
    font-weight: 700;
    font-size: 13px;
    color: #1f2937;
    letter-spacing: -.01em;
    margin: 0 0 10px 0;
    text-transform: none;
}

.props-odds .props-filters-panel .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.props-odds .props-filters-panel .chips .chip {
    height: 36px;
    padding: 0 18px;
    border-color: rgba(148, 163, 184, .35) !important;
    background: var(--props-bg-surface) !important;
    font-weight: 600;
    font-size: 14px !important;
    letter-spacing: 0;
    box-shadow: none;
}

.props-odds .props-filters-panel .chips .chip:hover {
    background: #f1f5f9 !important;
}

.props-odds .props-filters-panel .chips .chip[aria-pressed="true"]:hover {
    background: var(--props-bg-surface) !important;
    color: var(--props-text) !important;
    border-color: rgba(148, 163, 184, .35) !important;
    box-shadow: none;
    transform: translateY(-1px);
}

.props-odds .props-filters-panel .chips .chip[aria-pressed="true"] {
    background: var(--props-accent) !important;
    color: #ffffff !important;
    border-color: var(--props-accent) !important;
    box-shadow: 0 6px 14px rgba(0, 158, 255, .28);
}

.props-odds .props-filters-panel .chips .chip[aria-pressed="true"]:hover,
.props-odds .props-filters-panel .chips .chip[aria-pressed="true"]:focus,
.props-odds .props-filters-panel .chips .chip[aria-pressed="true"]:active {
    background: var(--props-accent) !important;
    color: #ffffff !important;
    border-color: var(--props-accent) !important;
    box-shadow: 0 6px 14px rgba(0, 158, 255, .28);
    transform: none;
}

.props-odds .props-filters-panel .panel-header {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    gap: 6px !important;
    padding: 16px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(148, 163, 184, .18);
    text-align: center;
}

.props-odds .props-filters-panel .panel-header::before {
    content: '';
    width: 42px;
    height: 4px;
    border-radius: var(--props-radius-pill);
    background: rgba(100, 116, 139, .55);
    opacity: 1;
    margin: 0 auto 4px auto;
}

.props-odds .props-filters-panel .panel-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--props-text) !important;
    letter-spacing: -.01em;
}

.props-odds.props-odds-scope .props-market-filter .props-select .props-select-toggle:hover,
.props-odds.props-odds-scope .props-market-filter button#props-matchups-toggle.props-matchups-button:hover,
.props-odds.props-odds-scope .props-market-filter button.filter-control.props-matchups-button:hover,
.props-odds.props-odds-scope .props-market-filter input#props-player-filter[type="search"]:hover,
.props-odds.props-odds-scope .props-market-filter .props-search-wrap input[type="search"]:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 1px 2px rgba(2, 6, 23, .06);
}

.props-odds .props-market-filter .filter-select {
    appearance: none;
    padding-right: 34px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23677689" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M19.5 8.25l-7.5 7.5-7.5-7.5"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px 16px;
    border-radius: var(--props-radius-pill);
    height: var(--filter-height);
    border: 1px solid var(--filter-border) !important;
    background-color: var(--filter-bg);
    color: var(--props-text) !important;
    font-weight: 700;
    padding-left: 12px;
    box-shadow: 0 1px 1px rgba(2, 6, 23, 0.04) !important;
}

.props-odds .props-market-filter .props-positions-filter {
    order: 1000;
    margin-right: 0 !important;
}

.props-odds .props-market-filter .props-sort-filter {
    order: 1000;
    margin-left: 0 !important;
}

.props-odds .props-market-filter .props-sort-filter .props-select-toggle {
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    line-height: 1 !important;
    width: 100% !important;
}

.props-odds .props-market-filter .props-sort-filter .props-select {
    width: 180px !important;
    flex: 0 0 180px !important;
}
#props-weekdate {
    width: 180px ;

}

.props-odds-scope .props-select-toggle,
.props-odds-scope .props-select-menu,
.props-odds-scope .props-select-option {
    box-sizing: border-box;
}

.props-odds-scope .props-select-toggle.is-static {
    cursor: default;
    pointer-events: none;
    opacity: 0.85;
}

.props-odds-scope .props-select-toggle.is-static .chevron {
    display: none;
}

.props-odds-scope .props-select-toggle.is-disabled {
    cursor: not-allowed !important;
    pointer-events: none !important;
    opacity: 0.5 !important;
    background-color: #f1f5f9 !important;
    color: #94a3b8 !important;
    border-color: #e2e8f0 !important;
}

.props-odds-scope .props-select-toggle.is-disabled .filter-chevron,
.props-odds-scope .props-select-toggle.is-disabled .chevron {
    display: none !important;
}

.props-odds-scope .props-select-toggle.is-disabled svg {
    opacity: 0.4 !important;
}

.props-odds-scope .props-select-toggle.is-disabled:hover {
    background-color: #f1f5f9 !important;
    border-color: #e2e8f0 !important;
    box-shadow: none !important;
}

.props-odds-scope .props-select-toggle, .props-odds-scope .props-select-option {
    text-decoration: none !important;
    background-image: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

.props-odds-scope .props-select-option {
    border: none !important;
    box-shadow: none !important;
}

.props-odds-scope .props-select-option:before,
.props-odds-scope .props-select-option:after {
    display: none !important;
}

.props-odds-scope .props-select {
    position: relative;
    display: inline-block;
}

.props-odds-scope #props-positions-menu {
    padding: 12px !important;
    box-shadow: 0 18px 32px rgba(15, 23, 42, .22);
    border: 1px solid rgba(148, 163, 184, .22) !important;
    z-index: 1600 !important;
    grid-auto-rows: minmax(32px, auto) !important;
    gap: 8px !important;
}

.props-odds-scope #props-positions-menu .props-select-option {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 32px !important;
    padding: 0 14px !important;
    margin: 0 !important;
    border: 1px solid rgba(148, 163, 184, .28) !important;
    border-radius: var(--props-radius-pill) !important;
    background: #ffffff !important;
    color: var(--props-text) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    line-height: 1 !important;
}

.props-odds-scope #props-positions-menu .props-select-option:hover {
    border-color: #cbd5e1 !important;
    background: #f1f5f9 !important;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .08) !important;
}

.props-odds-scope #props-positions-menu .props-select-option[aria-selected="true"] {
    background: var(--props-accent) !important;
    border-color: var(--props-accent) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 158, 255, 0.26) !important;
}

.props-odds-scope #props-positions {
    width: 180px !important;
    flex: 0 0 180px !important;
}

.props-odds-scope #props-positions .props-select-toggle {
    position: relative !important;
    border-radius: var(--filter-radius) !important;
    font-weight: 700 !important;
    padding: 0 20px 0 12px !important;
    gap: 8px !important;
    line-height: 1 !important;
    min-width: 0 !important;
}

.props-odds-scope #props-positions .props-select-toggle, .props-odds-scope .props-select-toggle {
    display: inline-flex !important;
    align-items: center !important;
    width: 100% !important;
}


.props-odds-scope .props-select-toggle:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 1px 2px rgba(2, 6, 23, 0.06) !important;
}

.props-odds-scope .props-select-toggle #props-market-label {
    color: var(--props-text) !important;
    font-weight: 500 !important;
    max-width: calc(100% - 26px);
}

.props-odds-scope .props-market-label-text {
    pointer-events: none;
    max-width: 100% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    display: block;
}

.props-odds-scope .props-select-toggle:focus-visible {
    outline: none;
    border-color: #94a3b8;
    box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.16);
}

.props-odds-scope .props-select .chevron {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    opacity: .85;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23677689" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M19.5 8.25l-7.5 7.5-7.5-7.5"/></svg>') no-repeat center/16px 16px;
}

.props-odds-scope .props-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    max-height: 320px;
    overflow: auto;
    margin: 0;
}

.props-odds-scope .props-select-option {
    list-style: none;
    border-radius: 4px !important;
    padding: 8px 14px !important;
    margin: 2px 4px !important;
    position: relative;
    cursor: pointer;
    color: #374151 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    transition: all 0.15s ease;
}

.props-odds-scope .props-select-option:hover {
    background: #f1f5f9;
    color: var(--props-text) !important;
}

.props-odds-scope .props-select-option[aria-selected="true"] {
    background: var(--props-bg-surface);
    color: var(--props-text) !important;
    font-weight: 600;
}

.props-odds-scope .props-select-option[aria-selected="true"]::after {
    content: none;
}

.props-odds-scope .props-select-option[data-value="nfl"]::before,
.props-odds-scope .props-select-option[data-value="nfl"]::after, .props-odds-scope #props-league-menu .props-select-option::before,
.props-odds-scope #props-league-menu .props-select-option::after {
    content: none !important;
    display: none !important;
}

.props-odds-scope #props-league .props-select-toggle svg, .props-odds-scope #props-league-button svg {
    display: none !important;
}

.props-odds-scope #props-league svg,
.props-odds-scope .props-select[id="props-league"] svg,
.props-odds-scope div[id="props-league"] svg, .props-odds-scope button[id="props-league-button"] svg {
    display: none !important;
    visibility: hidden !important;
}

.props-odds-scope button[id="props-league-button"] svg {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.props-odds-scope #props-league-button .filter-chevron,
.props-odds-scope #props-league-button .filter-chevron .filter-chevron-icon {
    display: inline-flex !important;
    visibility: visible !important;
    width: 16px !important;
    height: 16px !important;
    opacity: 1 !important;
}

.props-odds-scope #props-league-button {
    padding-left: 12px !important;
}

.props-odds-scope #props-league-button svg + * {
    margin-left: 0 !important;
}

.props-odds-scope .props-select.hidden {
    display: none;
}

.props-matchups-panel .panel-actions .ghost {
    background: #f1f5f9;
    color: var(--props-text) !important;
    border: 1px solid var(--props-border-light);
}

.props-matchups-panel .panel-actions .ghost:hover {
    filter: brightness(0.98);
}

.props-odds #props-market-select {
    min-width: 220px;
}

.props-odds .props-market-filter .props-matchups-panel.props-more-panel {
    grid-template-rows:auto auto 1fr;
    max-height: min(80vh, 760px);
}

.props-odds .props-market-filter .props-more-panel .panel-actions {
    display: none;
}

.props-odds-scope .props-matchups-panel {
    box-shadow: 0 8px 18px rgba(2, 6, 23, .12);
}

.props-odds .props-matchups-panel .panel-title {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.props-odds .props-matchups-panel .panel-controls,
.props-odds .props-matchups-panel .panel-filters,
.props-odds .props-matchups-panel .panel-list,
.props-odds .props-matchups-panel .panel-actions {
    font-size: 13px;
}

.props-odds .props-matchups-panel .panel-controls label {
    font-size: 13px;
    font-weight: 600;
}

.props-odds .props-matchups-panel .panel-filters .status-chips .chip {
    height: 32px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

.props-odds .props-matchups-panel .panel-filters .status-chips .chip:not([aria-pressed="true"]) {
    background: #ffffff !important;
    color: var(--props-text) !important;
    border-color: #e6edf5 !important;
    box-shadow: none !important;
}

.props-odds .props-matchups-panel .panel-filters .search-input input[type="search"] {
    font-size: 14px !important;
}

.props-odds .props-matchups-panel .panel-actions .ghost {
    background: var(--props-bg-surface) !important;
    color: #1e293b !important;
    border: 1px solid #d7deea !important;
    font-weight: 700 !important;
    box-shadow: none !important;
}

.props-odds .props-matchups-panel .panel-actions .ghost:hover {
    filter: none !important;
    background: #eef2f7 !important;
}

.props-odds .props-matchups-panel .panel-actions .ghost:active {
    background: var(--props-border-light) !important;
}

.props-odds .props-matchups-panel .panel-actions {
    padding: 12px 16px !important;
    gap: 10px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.props-odds .props-matchups-panel .panel-actions button {
    height: 36px !important;
    padding: 0 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    width: 100% !important;
    justify-content: center;
}

.props-odds .props-matchups-panel .panel-actions .primary {
    font-weight: 700 !important;
}

.props-odds .props-matchups-panel .panel-actions .ghost {
    justify-content: center;
}

.props-odds .props-market-filter .props-select-menu,
.props-odds-scope .props-select-menu {
    left: 0 !important;
    right: auto !important;
    margin-left: 0 !important;
    transform: none !important;
    min-width: max(220px, 100%) !important;
    width: max(220px, 100%) !important;
    max-width: none !important;
    padding: 0;
    box-shadow: 0 18px 32px rgba(15, 23, 42, .22);
    border: 1px solid var(--props-drawer-border, #e6edf5);
    z-index: 99;
}

.props-market-filter .button:hover,
.props-market-filter button:hover,
.props-market-filter .components-button:hover {
    filter: brightness(0.96);
}

.props-odds .props-market-filter .props-game-chips .game-card {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center;
    min-width: 110px;
    padding: 8px 12px;
    border: 1px solid var(--filter-border) !important;
    border-radius: var(--props-radius-pill) !important;
    background: #ffffff !important;
    color: var(--props-text) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    line-height: 1 !important;
    box-shadow: 0 1px 1px rgba(2, 6, 23, 0.04) !important;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease, transform .12s ease, background .15s ease;
}

.props-odds .props-market-filter .props-game-chips .game-card:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .08);
    transform: translateY(-1px);
}

.props-odds .props-market-filter .props-game-chips .game-card:focus-visible {
    outline: none;
    border-color: #94a3b8 !important;
    box-shadow: 0 0 0 3px rgba(0, 158, 255, 0.16);
}

.props-odds .props-market-filter .props-game-chips .game-card.active,
.props-odds .props-market-filter .props-game-chips .game-card[aria-pressed="true"], .props-odds #props-gamechips-toggle[aria-pressed="true"],
.props-odds-scope #props-gamechips-toggle[aria-pressed="true"] {
    background: var(--props-accent) !important;
    color: #ffffff !important;
    border-color: var(--props-accent) !important;
    box-shadow: 0 4px 10px rgba(0, 158, 255, 0.26) !important;
}

.props-odds .props-market-filter .props-matchups-panel {
    --matchups-active-bg: #eef5ff;
    --matchups-active-border: #c7ddf9;
    --matchups-active-fg: #0f172a;
    --props-drawer-surface: #f7f9fc;
    --props-drawer-surface-strong: #eef2f7;
}

.props-odds .props-market-filter .props-matchups-panel .panel-filters .status-chips .chip[aria-pressed="true"] {
    box-shadow: inset 0 0 0 1px var(--matchups-active-border) !important;
    background: var(--props-accent) !important;
    color: #fff !important;
    border-color: var(--props-accent) !important;
}

.props-odds .props-market-filter .props-matchups-panel .panel-list .matchup-item input[type="checkbox"]:checked + span {
    background: #f7f9fc !important;
    color: var(--props-text) !important;
    border-color: var(--props-accent) !important;
    box-shadow: 0 0 0 2px rgba(0, 158, 255, 0.15) inset !important;
}

.props-odds .props-market-filter .props-matchups-panel .panel-list .matchup-item span.matchup-item-content {
    position: relative;
    background: #f7f9fc !important;
    border-color: #e6edf5 !important;
}

.props-odds .props-market-filter .props-matchups-panel .panel-list .matchup-item span.matchup-item-content::before {
    display: none;
    content: none;
}

.props-odds .props-market-filter .props-matchups-panel .panel-list .matchup-item input[type="checkbox"]:checked + span .kickoff {
    color: #4b5563 !important;
}

.props-odds-scope #props-positions-menu:not([hidden]) {
    display: grid !important;
}

.props-odds-scope #props-positions-menu[hidden] {
    display: none !important;
}

.props-odds-scope #props-positions-label {
    white-space: nowrap !important;
}

.props-odds .props-market-filter .props-more-filter {
    position: relative !important;
    z-index: 1000 !important;
}

.props-odds .props-more-panel .panel-controls .search-input,
.props-odds .props-more-panel .search-box .search-input {
    display: block !important;
    width: 100% !important;
    position: relative !important;
}

.props-odds .props-more-panel .search-input input[type="search"],
.props-odds .props-more-panel input#props-more-search {
    width: 100% !important;
    height: 36px !important;
    padding: 0 12px 0 40px !important;
    font-size: 14px !important;
    border: 1px solid var(--props-border-light) !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    color: var(--props-text) !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.props-odds .props-more-panel .search-input svg {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 16px !important;
    height: 16px !important;
    pointer-events: none !important;
    opacity: 0.5 !important;
    z-index: 1;
}

.props-odds .props-more-filter.open .props-more-panel {
    display: grid !important;
    grid-template-rows:auto auto auto 1fr auto;
}

.props-odds .props-more-panel .panel-header {
    grid-row: 1;
    padding: 12px 16px;
    border-bottom: 1px solid var(--props-border-light);
}

.props-odds .props-more-panel .tabs,
.props-odds .props-more-panel .category-tabs {
    grid-row: 2;
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--props-border-light);
}

.props-odds .props-more-panel .search-box {
    grid-row: 3;
    padding: 8px 12px !important;
    border-bottom: 1px solid var(--props-border-light);
}

.props-odds .props-more-panel .panel-actions {
    grid-row: 5;
    padding: 12px 16px;
    border-top: 1px solid var(--props-border-light);
}

.props-odds .props-more-panel input[type="search"]:focus {
    outline: none !important;
    border-color: #0066cc !important;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1) !important;
}

.props-odds .props-more-panel input[type="search"]::placeholder {
    color: #94a3b8;
    opacity: 1;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.props-odds .props-filters-panel .panel-header {
    padding: 16px !important;
    background: #ffffff !important;
    border-bottom: 1px solid var(--props-border-light) !important;
}

.props-odds .props-filters-panel .panel-close-button {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    background: var(--props-accent, #2563eb) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--props-radius-pill) !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

body .props-odds-engine .props-odds .props-market-filter .props-filters-filter.open .props-filters-panel,
body .props-odds-engine .props-odds .props-market-filter .props-filters-filter.open .props-filters-panel[hidden] {
    display: grid !important;
    visibility: visible !important;
    z-index: 999999 !important;
    position: fixed !important;
}

body .props-odds-engine .props-odds .props-market-filter .props-filters-filter.open::before {
    z-index: 999998 !important;
    position: fixed !important;
}


.props-odds .props-market-filter .props-search-wrap::before {
    content: "" !important;
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 16px !important;
    height: 16px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='6.5' cy='6.5' r='5.5' stroke='%2364748b' stroke-width='1.5'/%3E%3Cpath d='M11 11L14 14' stroke='%2364748b' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    pointer-events: none !important;
    z-index: 1 !important;
    display: block !important;
}

.props-odds .props-search-button svg,
.props-odds .props-search-button::before {
    width: 16px !important;
    height: 16px !important;
}

.props-odds input[placeholder="Search Players"]:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='6.5' cy='6.5' r='5.5' stroke='%230f172a' stroke-width='1.5'/%3E%3Cpath d='M11 11L14 14' stroke='%230f172a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

.props-odds input#props-player-filter:focus {
    outline: none !important;
    border-color: var(--props-accent, #2563eb) !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
}

.props-odds input#props-player-filter::placeholder {
    color: var(--props-text-muted) !important;
    opacity: 1 !important;
}

.props-odds .props-more-filter.open .props-more-panel,
.props-odds .props-matchups-filter.open .props-matchups-panel {
    display: grid !important;
}

.props-odds .props-more-panel .search-box,
.props-odds .props-matchups-panel .search-box {
    padding: 8px 12px !important;
}

.props-odds .props-more-panel input[type="search"],
.props-odds .props-matchups-panel input[type="search"] {
    font-size: 14px !important;
}

.props-market-filter {
    padding: 8px 15px 17px 0 !important;
    position: relative;
}

.props-odds .props-more-filter.open .props-more-panel {
    pointer-events: auto !important;
}

.props-odds select.sr-only,
.props-odds select.jcf-ignore,
.props-odds .sr-only.jcf-ignore {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    max-width: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

:where(.props-odds, .props-odds-scope) {
    --props-dialog-overlay-color: rgba(15, 23, 42, 0.35);
    --props-dialog-shadow: 0 18px 32px rgba(15, 23, 42, 0.18), 0 6px 12px rgba(15, 23, 42, 0.14);
    --props-dialog-border: var(--props-border-light, #e2e8f0);
    --props-dialog-radius: 16px;
    --props-dialog-width: min(420px, calc(100vw - 32px));
    --props-dialog-max-height: min(80vh, 640px);
}

body.props-dialog--scroll-locked {
    overscroll-behavior: contain;
}

.props-dialog__overlay {
    position: fixed;
    inset: 0;
    background: var(--props-dialog-overlay-color);
    opacity: 0;
    pointer-events: none;
    transition: opacity 150ms ease;
    z-index: 100;
}

.props-dialog__overlay[data-dialog-overlay="visible"] {
    opacity: 1;
    pointer-events: auto;
}

:where(.props-odds, .props-odds-scope) [data-dialog-state="closed"] {
    display: none !important;
}

:where(.props-odds, .props-odds-scope) [data-dialog-state="open"] {
    display: block;
}

:where(.props-odds, .props-odds-scope) .props-matchups-panel[data-dialog-state="open"],
:where(.props-odds, .props-odds-scope) .props-more-panel[data-dialog-state="open"] {
    display: grid !important;
}

:where(.props-odds, .props-odds-scope) .filter-trigger .filter-control {
    align-items: center;
    gap: 6px;
}

:where(.props-odds, .props-odds-scope) .filter-trigger .filter-control svg {
    width: 16px;
    height: 16px;
}

:where(.props-odds, .props-odds-scope) .props-filter-bar {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

:where(.props-odds, .props-odds-scope) .props-filter-extras {
    display: flex;
    gap: 12px;
    align-items: center;
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] {
    position: fixed;
    inset: 0;
    z-index: 1600;
    display: grid;
    grid-template-rows:auto 1fr auto;
    background: var(--props-bg, #ffffff);
    border-radius: 0;
    max-width: none;
    width: 100%;
    height: 100dvh;
}

@supports not (height: 100dvh) {
    :where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] {
        height: 100vh;
    }
}

@supports not (height: 100vh) {
    :where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] {
        min-height: -webkit-fill-available;
    }
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-header,
:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-actions {
    position: sticky;
    inset-inline: 0;
    z-index: 1;
    background: var(--props-bg, #ffffff);
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-header {
    top: 0;
    border-bottom: 1px solid var(--props-dialog-border);
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-actions {
    bottom: 0;
    border-top: 1px solid var(--props-dialog-border);
    padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-list,
:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-content {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-inline: 20px;
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-header,
:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-actions {
    padding-inline: 20px;
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="popover"] .panel-header,
:where(.props-odds, .props-odds-scope) [data-dialog-mode="popover"] .panel-actions {
    padding-inline: 16px;
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="popover"] .panel-list,
:where(.props-odds, .props-odds-scope) [data-dialog-mode="popover"] .panel-content {
    max-height: calc(var(--props-dialog-max-height) - 110px);
    overflow-y: auto;
    padding-inline: 16px;
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-title {
    font-size: var(--props-text-lg, 18px);
}

:where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] .panel-close-button {
    font-size: var(--props-text-base, 14px);
    padding-inline: 18px;
    height: var(--filter-height, 36px);
    border-radius: var(--props-radius-pill, 999px);
}

:where(.props-odds, .props-odds-scope) .props-search-panel .panel-content {
    padding: 20px;
}

:where(.props-odds, .props-odds-scope) .props-search-panel .panel-content input[type="search"] {
    width: 100%;
    border: 1px solid var(--props-border-light, #e2e8f0);
    border-radius: var(--props-radius-pill, 999px);
    height: var(--filter-height, 36px);
    padding: 0 16px;
    font-size: 16px;
    line-height: 1.4;
}

:where(.props-odds, .props-odds-scope) .props-search-panel .panel-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

:where(.props-odds, .props-odds-scope) .props-search-panel .panel-actions .ghost,
:where(.props-odds, .props-odds-scope) .props-search-panel .panel-actions .primary {
    flex: 1 1 auto;
}


.props-odds .props-comparison-table tr.props-row-hidden, .props-odds-scope .props-comparison-table tr.props-row-hidden {
    display: none !important;
}


.props-odds .props-odds-container .props-comparison-outer .props-comparison-container, .props-odds-scope .props-comparison-container {
    overflow-x: auto !important;
}

.props-odds .props-comparison-table thead, .props-odds-scope .props-comparison-table thead {
    display: table-header-group !important;
}

.props-odds .props-comparison-table tbody, .props-odds-scope .props-comparison-table tbody {
    display: table-row-group !important;
}

.props-odds .props-comparison-table tr, .props-odds-scope .props-comparison-table tr:not(.props-row-hidden) {
    display: table-row !important;
}

.props-odds .props-comparison-table th, .props-odds-scope .props-comparison-table th,
.props-odds .props-comparison-table td, .props-odds-scope .props-comparison-table td {
    display: table-cell !important;
}

.props-odds .props-comparison-table thead th, .props-odds-scope .props-comparison-table thead th {
    position: sticky !important;
    top: 0 !important;
}


.props-odds .props-comparison-table .player-info .player-name, .props-odds-scope .props-comparison-table .player-info .player-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #2c3e50 !important;
    margin-bottom: 2px !important;
}

.props-odds .player-search-hidden, .props-odds-scope .player-search-hidden,
.props-odds table .player-search-hidden, .props-odds-scope table .player-search-hidden,
.props-odds tbody .player-search-hidden, .props-odds-scope tbody .player-search-hidden,
.props-odds .props-comparison-table .player-search-hidden, .props-odds-scope .props-comparison-table .player-search-hidden,
.props-odds .position-filter-hidden, .props-odds-scope .position-filter-hidden,
.props-odds table .position-filter-hidden, .props-odds-scope table .position-filter-hidden,
.props-odds tbody .position-filter-hidden, .props-odds-scope tbody .position-filter-hidden,
.props-odds .props-comparison-table .position-filter-hidden, .props-odds-scope .props-comparison-table .position-filter-hidden {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container, .props-odds-scope .props-comparison-container {
    position: relative;
    background: var(--props-bg);
    overflow-x: auto;
    margin-bottom: 20px;
    margin-left: 0;
    overscroll-behavior-x: contain;
    scrollbar-gutter: stable;
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container::after, .props-odds-scope .props-comparison-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container.is-scrollable::after, .props-odds-scope .props-comparison-container.is-scrollable::after {
    opacity: 1;
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container::-webkit-scrollbar, .props-odds-scope .props-comparison-container::-webkit-scrollbar {
    height: var(--props-scrollbar-size, 12px);
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container::-webkit-scrollbar-track, .props-odds-scope .props-comparison-container::-webkit-scrollbar-track {
    background: var(--props-bg);
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container::-webkit-scrollbar-thumb, .props-odds-scope .props-comparison-container::-webkit-scrollbar-thumb {
    background-color: rgba(15, 23, 42, 0.35);
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.55);
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container, .props-odds-scope .props-comparison-container {
    scrollbar-color: rgba(15, 23, 42, 0.35) var(--props-bg);
}

.props-odds .props-comparison-table, .props-odds-scope .props-comparison-table {
    width: max-content;
    min-width: var(--props-table-min, 1400px);
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    table-layout: fixed;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.props-odds .props-comparison-table .market, .props-odds-scope .props-comparison-table .market {
    white-space: normal;
}

.props-odds .props-comparison-table thead th, .props-odds-scope .props-comparison-table thead th {
    background: #0f172a;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    min-height: 52px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
}

.props-odds .props-odds-container .props-comparison-outer .props-comparison-container .props-comparison-table thead th {
    color: #ffffff;
    border-right: 1px solid #4e4e4e;
    border-bottom: 1px solid #4e4e4e;
    line-height: 1.3;
    padding: 16px 10px !important;
    padding-top: 16px !important;
    padding-bottom: 16px !important;
}

.props-odds .props-comparison-table thead th a,
.props-odds .props-comparison-table thead th span,
.props-odds .props-comparison-table thead th strong {
    color: inherit;
}

.props-odds .props-comparison-table thead th:last-child, .props-odds-scope .props-comparison-table thead th:last-child {
    border-right: none;
}

.props-odds .props-comparison-table tbody td,
.props-odds-scope .props-comparison-table tbody td {
    vertical-align: middle;
    border-color: var(--props-border) !important;
}

.props-odds-scope .props-comparison-table tbody th.player-info {
    font-weight: 500 !important;
    padding: 10px 11px 10px 11px !important;
    text-align: left !important;
}

.props-odds .props-comparison-table tbody td:last-child, .props-odds-scope .props-comparison-table tbody td:last-child {
    border-right: none;
}

.props-odds .props-comparison-table tbody tr:first-child td, .props-odds-scope .props-comparison-table tbody tr:first-child td,
.props-odds .props-comparison-table tbody tr:first-child th.player-info, .props-odds-scope .props-comparison-table tbody tr:first-child th.player-info {
    border-top: 1px solid #1f2937 !important;
}

.props-odds .props-comparison-table tbody tr, .props-odds-scope .props-comparison-table tbody tr {
    min-height: 44px;
}

.props-odds-scope .props-comparison-table thead th {
    font-weight: 700;
}

.props-odds .props-comparison-table th.sortable, .props-odds-scope .props-comparison-table th.sortable {
    user-select: none;
}

.props-odds .props-comparison-table thead th.sortable, .props-odds-scope .props-comparison-table thead th.sortable {
}

.props-odds .props-comparison-table thead th .header-icon, .props-odds-scope .props-comparison-table thead th .header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 6px;
}

.props-odds .props-comparison-table thead th .header-icon svg, .props-odds-scope .props-comparison-table thead th .header-icon svg {
    width: 100%;
    height: 100%;
}

.props-odds .props-comparison-table th .sort-icon, .props-odds-scope .props-comparison-table th .sort-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.75);
    pointer-events: none;
}

.props-odds .props-comparison-table th .sort-icon svg, .props-odds-scope .props-comparison-table th .sort-icon svg {
    width: 16px;
    height: 16px;
    color: #b3b7c5 !important;
}

.props-odds .props-comparison-table th.sorted-asc .sort-icon, .props-odds-scope .props-comparison-table th.sorted-asc .sort-icon,
.props-odds .props-comparison-table th.sorted-desc .sort-icon, .props-odds-scope .props-comparison-table th.sorted-desc .sort-icon {
    color: #ffffff;
}

.props-odds .props-comparison-table th.sortable:hover, .props-odds-scope .props-comparison-table th.sortable:hover {
    filter: brightness(1.1);
}

.props-odds .player-cell, .props-odds-scope .player-cell {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.props-odds .player-header, .props-odds-scope .player-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.props-odds .player-avatar-wrap, .props-odds-scope .player-avatar-wrap {
    position: relative;
    display: inline-flex;
    height: 40px;
    align-items: flex-start;
}

.props-odds .player-avatar, .props-odds-scope .player-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 50%;
    object-fit: cover;
    background: #e5e7eb;
    flex: 0 0 40px;
    flex-shrink: 0;
    overflow: hidden;
}

.props-odds .player-avatar.placeholder, .props-odds-scope .player-avatar.placeholder {
    background: #e5e7eb;
}

.props-odds .player-avatar-wrap .team-logo-avatar, .props-odds-scope .player-avatar-wrap .team-logo-avatar {
    position: absolute;
    bottom: -6px;
    left: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    padding: 2px;
    object-fit: contain;
    display: none;
}

.props-odds .player-text, .props-odds-scope .player-text {
    display: inline-block;
}

.props-odds .player-text-block, .props-odds-scope .player-text-block {
    display: flex;
    flex-direction: column;
}

.props-odds .line, .props-odds-scope .line {
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
}

.props-odds .line-with-market, .props-odds-scope .line-with-market {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.props-odds .line-with-market .line-value, .props-odds-scope .line-with-market .line-value {
    color: #2c3e50;
    font-weight: 700;
}

.props-odds .line-with-market .market-label, .props-odds-scope .line-with-market .market-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #838c9f;
    letter-spacing: .3px;
    line-height: 1.3;
}

.props-odds .over-odds, .props-odds-scope .over-odds, .props-odds .under-odds, .props-odds-scope .under-odds {
    text-align: center;
    font-weight: 600;
    font-family: var(--props-font-mono);
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 6px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
}

.props-odds .odds-pos, .props-odds-scope .odds-pos, .props-odds .odds-neg, .props-odds-scope .odds-neg {
    color: #374151;
}

.props-odds .updated-at, .props-odds-scope .updated-at {
    color: var(--props-text-muted);
    font-size: 13px;
    text-align: center;
}

.props-odds-footer {
    margin-top: 10px;
    text-align: center;
    color: #7f8c8d;
}

.props-odds-error {
    background: #e74c3c;
}

.props-odds-error, .props-odds-empty {
    color: #fff;
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
    text-align: center;
}

.props-odds-empty {
    background: #f39c12;
}


.props-odds .player-info .player-details, .props-odds-scope .player-info .player-details {
    font-size: 11px;
    color: #7f8c8d;
    font-weight: 400;
}


.props-odds .player-info .player-details .sep, .props-odds-scope .player-info .player-details .sep {
    color: #c0c5cb;
    margin: 0 2px;
}

.props-odds .player-col, .props-odds-scope .player-col,
.props-odds .props-comparison-table .player-info, .props-odds-scope .props-comparison-table .player-info {
    position: sticky;
    left: 0;
}


.props-odds .props-comparison-table thead th.player-col, .props-odds-scope .props-comparison-table thead th.player-col {
    z-index: 501 !important;
    text-align: left;
}

.props-odds .props-comparison-table thead th.sportsbook-col, .props-odds-scope .props-comparison-table thead th.sportsbook-col {
    z-index: 10;
}

.props-odds .line-col, .props-odds-scope .line-col, .props-odds .props-comparison-table .line, .props-odds-scope .props-comparison-table .line {
    min-width: 80px;
    max-width: 80px;
    text-align: center;
    font-weight: 600;
    color: #e67e22;
}

.props-odds .sportsbook-col, .props-odds-scope .sportsbook-col, .props-odds .props-comparison-table .odds-cell, .props-odds-scope .props-comparison-table .odds-cell {
    min-width: 112px;
    max-width: 112px;
    width: 112px;
    text-align: center;
    padding: 12px 16px !important;
}

.props-odds .sportsbook-col, .props-odds-scope .sportsbook-col {
    font-size: 10px;
    font-weight: 700;
    color: var(--props-text-muted);
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
}

.props-odds .sportsbook-col .sportsbook-logo, .props-odds-scope .sportsbook-col .sportsbook-logo {
    height: 16px !important;
    max-width: 80px !important;
    max-height: none !important;
    width: auto !important;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.props-odds .sportsbook-col a {
    display: inline-block;
    line-height: 0;
}

.props-odds .props-comparison-table thead th.line-col, .props-odds-scope .props-comparison-table thead th.line-col {
    white-space: nowrap;
}

.props-odds .props-comparison-table thead th.line-col, .props-odds-scope .props-comparison-table thead th.line-col,
.props-odds .props-comparison-table td.line, .props-odds-scope .props-comparison-table td.line {
    display: none;
}

.props-odds .odds-pair, .props-odds-scope .odds-pair {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.props-odds .odds-link {
    text-decoration: none;
    color: inherit;
}

.props-odds .odds-link:hover .over-odds,
.props-odds .odds-link:hover .under-odds {
    filter: brightness(1.05);
}

.props-odds .props-comparison-table, .props-odds-scope .props-comparison-table {
    table-layout: fixed;
}

.props-odds .props-comparison-table .player-inline-game, .props-odds-scope .props-comparison-table .player-inline-game {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
    font-size: 11px;
    color: #6b7280;
}

.props-odds .props-comparison-table .player-inline-game .game-date, .props-odds-scope .props-comparison-table .player-inline-game .game-date {
    color: #64748b;
}

.props-odds .props-comparison-table .player-inline-game .game-state .state-label, .props-odds-scope .props-comparison-table .player-inline-game .game-state .state-label {
    color: #000000;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.props-odds .props-comparison-table .player-inline-game .game-state.status-final .state-label, .props-odds-scope .props-comparison-table .player-inline-game .game-state.status-final .state-label {
    color: #6b7280;
}

.props-odds .props-comparison-table .player-inline-game .game-state.status-countdown, .props-odds-scope .props-comparison-table .player-inline-game .game-state.status-countdown {
    color: var(--props-brand-red);
}

.props-odds .props-comparison-table .player-inline-game .game-state.status-live .state-label::before, .props-odds-scope .props-comparison-table .player-inline-game .game-state.status-live .state-label::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--props-brand-red);
}

.props-odds .props-comparison-table thead th.line-col, .props-odds-scope .props-comparison-table thead th.line-col {
    width: 80px;
}

.props-odds .odds-pair.single, .props-odds-scope .odds-pair.single {
    justify-content: center;
    min-height: 48px;
}

.props-odds {
    --pill-pad-y: 2px;
    --pill-pad-x: 8px;
    --pill-radius: 3px;
}

.props-odds .odds-pair .over-odds, .props-odds-scope .odds-pair .over-odds,
.props-odds .odds-pair .under-odds, .props-odds-scope .odds-pair .under-odds {
    font-variant-numeric: tabular-nums;
    min-width: 0;
    text-align: center;
    background: transparent;
    border: none;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.props-odds .best-check, .props-odds-scope .best-check {
    display: none;
}

.props-odds .line-chips, .props-odds-scope .line-chips {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.props-odds .line-chip, .props-odds-scope .line-chip {
    padding: 2px 6px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 12px;
    color: #374151;
    background: #ffffff;
}

.props-odds .odds-pair .odds-empty, .props-odds-scope .odds-pair .odds-empty {
    border-color: transparent;
    background: transparent;
    color: #95a5a6;
}

.props-odds .odds-pair .over-odds.best-odds, .props-odds-scope .odds-pair .over-odds.best-odds,
.props-odds .odds-pair .under-odds.best-odds, .props-odds-scope .odds-pair .under-odds.best-odds {
    color: inherit;
    border-radius: var(--pill-radius);
    padding: var(--pill-pad-y) var(--pill-pad-x) !important;
    background-color: #c5f3e4;
}

.props-odds .no-odds, .props-odds-scope .no-odds {
    color: #95a5a6;
    font-size: 11px;
    text-align: center;
}

.props-odds .line-prefix, .props-odds-scope .line-prefix {
    color: #828a99;
    font-weight: 600;
    margin-right: 4px;
}


.props-odds .props-comparison-table .player-info .player-details, .props-odds-scope .props-comparison-table .player-info .player-details {
    font-size: 11px;
}


.props-odds .props-comparison-table .player-details, .props-odds-scope .props-comparison-table .player-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.props-odds .props-comparison-table .player-details .team, .props-odds-scope .props-comparison-table .player-details .team {
    align-items: center;
    border-radius: 2px;
    font-size: 10px;
    line-height: 1.2;
}

.props-odds .props-comparison-table .player-details .team.has-logo, .props-odds-scope .props-comparison-table .player-details .team.has-logo {
    background: transparent;
    color: inherit;
    padding: 0;
    margin-right: 0;
}

.props-odds .props-comparison-table .player-details .team .team-logo, .props-odds-scope .props-comparison-table .player-details .team .team-logo {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    object-fit: contain;
    display: inline-block;
}

.props-odds .props-comparison-table .player-details .team .team-text, .props-odds-scope .props-comparison-table .player-details .team .team-text, .props-odds .props-comparison-table .player-details .team.has-logo .team-text, .props-odds-scope .props-comparison-table .player-details .team.has-logo .team-text {
    display: inline-block;
}

.props-odds .props-comparison-table .player-details .jersey, .props-odds-scope .props-comparison-table .player-details .jersey {
    color: #7f8c8d;
    font-size: 10px;
}

.props-odds .props-comparison-table .player-details .matchup, .props-odds-scope .props-comparison-table .player-details .matchup {
    color: var(--props-text-muted);
    font-size: 11px;
    font-weight: 600;
}

.props-odds .props-comparison-table .player-details .sep, .props-odds-scope .props-comparison-table .player-details .sep {
    color: #c0c5cb;
    margin: 0 2px;
}

.props-odds .props-comparison-table tbody tr:hover, .props-odds-scope .props-comparison-table tbody tr:hover, .props-odds .props-comparison-table tbody tr:hover td, .props-odds-scope .props-comparison-table tbody tr:hover td, .props-odds .props-comparison-table tbody tr:hover .player-info, .props-odds-scope .props-comparison-table tbody tr:hover .player-info {
    background: var(--props-bg-muted);
}

.props-odds .props-comparison-table tbody tr:nth-child(even), .props-odds-scope .props-comparison-table tbody tr:nth-child(even) {
    background: #fafbfc;
}

.props-odds .props-comparison-table tbody tr:nth-child(even) .player-info, .props-odds-scope .props-comparison-table tbody tr:nth-child(even) .player-info {
    background: #f7f7f7;
}

.props-odds .props-comparison-table tbody tr:nth-child(even) td, .props-odds-scope .props-comparison-table tbody tr:nth-child(even) td {
    background: #f7f7f7 !important;
}

.props-odds .props-comparison-footer, .props-odds-scope .props-comparison-footer {
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #ecf0f1;
    font-size: 11px;
    color: #7f8c8d;
    text-align: center;
}

.props-odds-footer,
.props-odds .props-comparison-footer, .props-odds-scope .props-comparison-footer {
    display: none !important;
}

.props-odds .props-comparison-table,
.props-odds-scope .props-comparison-table {
    table-layout: fixed;
}

.props-odds .props-comparison-table col.col-player,
.props-odds-scope .props-comparison-table col.col-player {
    width: var(--frozen-player);
}

.props-odds .props-comparison-table col.col-sportsbook,
.props-odds-scope .props-comparison-table col.col-sportsbook {
    width: var(--props-col-ideal, 112px);
}

.props-odds .props-comparison-table thead th.player-col,
.props-odds .props-comparison-table tbody td.player-info,
.props-odds .props-comparison-table tbody th.player-info,
.props-odds-scope .props-comparison-table thead th.player-col,
.props-odds-scope .props-comparison-table tbody td.player-info,
.props-odds-scope .props-comparison-table tbody th.player-info {
    box-sizing: border-box;
    width: var(--frozen-player);
    max-width: var(--frozen-player);
    z-index: 999;
}

.props-odds .props-show-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem !important;
    margin: 0 auto 0.75rem !important;
    padding: 0 12px !important;
    text-align: center;
    width: 100%;
    max-width: 100%;
    transform: none;
    pointer-events: auto;
}

.props-odds .props-show-toggle .props-show-all-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 2.5rem !important;
    min-width: 220px !important;
    border-radius: 12px !important;
    border: 1px solid var(--props-border, #e5e7eb) !important;
    background: var(--props-surface-muted, #f8fafc) !important;
    background-color: var(--props-surface-muted, #f8fafc) !important;
    color: var(--props-text-strong, #0f172a) !important;
    font-family: inherit;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.01em;
    text-transform: none;
    line-height: 1.1;
    box-shadow: none !important;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.props-odds .props-show-toggle .props-show-all-button:hover {
    background: var(--props-surface, #ffffff) !important;
    border-color: #cbd5e1 !important;
    box-shadow: none !important;
}

.props-odds .props-show-toggle .props-show-all-button:active {
    background: #e2e8f0 !important;
    border-color: #cbd5e1 !important;
    box-shadow: none !important;
}

.props-odds .props-show-toggle .props-show-all-button:focus-visible {
    outline: 2px solid var(--props-brand-cyan, #009eff);
    outline-offset: 3px;
}

.props-odds .props-toggle-status {
    margin: 0 !important;
    font-size: 11.5px !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--props-text-muted);
    font-weight: 600;
}


.player-info {
    text-transform: none;
}


th.player-info {
    border: none;
}

.player-name, .player-details {
    padding-bottom: 3px;
}

.props-odds .props-comparison-table tbody tr:nth-child(odd) .player-info, .props-odds-scope .props-comparison-table tbody tr:nth-child(odd) .player-info {
    background: #ffffff;
}

span.team-text.sr-only {
    display: none !important;
}

.props-odds .props-comparison-table .player-details .position,
.props-odds-scope .props-comparison-table .player-details .position {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #009eff;
    color: #fff;
    border-radius: 2px;
    margin-right: 4px;
    font-size: 11px;
    line-height: 1;
    padding: 0;
    text-transform: uppercase;
    overflow: hidden;
    width: 19px;
    height: 16px;
}

.props-odds .props-comparison-table tbody td,
.props-odds-scope .props-comparison-table tbody td,
th.player-info {
    border-right: 1px solid #E5E7EB !important;
    border-bottom: 1px solid #E5E7EB !important;
}


.player-col.sortable span.sr-only {
    display: none;
}

.props-search-wrap input[type="search"] {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
}

.props-search-wrap {
    gap: 0 !important;
    column-gap: 0 !important;
}

.props-search-wrap > * {
    margin: 0 !important;
}


:where(.props-odds, .props-odds-scope) .sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px;
}


:where(.props-odds, .props-odds-scope) .jcf-select-sr-only {
    display: none !important;
}


:where(.props-odds, .props-odds-scope) .scrollbar-gutter {
    scrollbar-gutter: stable;
}


:where(.props-odds, .props-odds-scope) .scrollbar-shim {
    height: 1px;
    width: 0;
}


:where(.props-odds, .props-odds-scope) .matchup-filter-hidden {
    display: none;
}


:where(.props-odds, .props-odds-scope) .player-search-hidden {
    display: none;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    opacity: 0;
}


html.props-modal-open,
body.props-modal-open {
    overflow: hidden !important;
    overscroll-behavior: contain;
}


.props-modal-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: var(--props-z-overlay, 1400);
}


.props-modal-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.props-odds-engine .props-odds,
.props-odds-engine .props-odds * {
    font-family: var(--props-font-primary);
}

.props-odds-engine .props-odds .over-odds, .props-odds-engine .props-odds .under-odds, .props-odds-engine .props-odds-scope .over-odds, .props-odds-engine .props-odds-scope .under-odds, .props-odds-engine .props-odds .props-table .odds-cell, .props-odds-engine .props-odds .props-table td.odds-cell, .props-odds-engine .props-odds table .odds-cell, .props-odds-engine .props-odds .odds-value, .props-odds-engine .props-odds .line-prefix, .props-odds-engine .props-odds [class*="odds"], .props-odds-engine .props-odds td.odds-cell *, .props-odds-engine .props-odds .odds-cell span, .props-odds-engine .props-odds .odds-cell .line-prefix, .props-odds-engine .props-odds .over-odds span, .props-odds-engine .props-odds .under-odds span, .props-odds-engine .props-odds .over-odds .line-prefix, .props-odds-engine .props-odds .under-odds .line-prefix {
    font-family: var(--props-font-mono) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}


.props-odds-engine .props-odds .props-more-panel:not(.open),
.props-odds-engine .props-odds .props-matchups-panel:not(.open) {
    display: none;
}

body .props-odds-engine .props-odds .props-more-panel,
body .props-odds-engine .props-odds .props-matchups-panel,
body .props-odds-engine .props-odds .props-filters-panel {
    z-index: var(--z-dropdown);
}

body .props-odds-engine .props-odds .modal-overlay {
    z-index: var(--z-overlay);
}

body .props-odds-engine .props-odds .modal {
    z-index: var(--z-modal);
}

body .props-odds-engine .props-odds .chip,
body .props-odds-engine .props-odds button,
body .props-odds-engine .props-odds input,
body .props-odds-engine .props-odds .panel {
    transition: var(--transition-interactive);
}

body .props-odds-engine .props-odds .flex-center,
body .props-odds-engine .props-odds .chips-container,
body .props-odds-engine .props-odds .filter-buttons {
    display: flex;
    align-items: center;
}

body .props-odds-engine .props-odds .flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.props-select {
    width: fit-content;
}
.props-filter-cta.props-filter-buttons {
    width: 100%;
}

html body .props-odds-engine .props-odds * {
    line-height: inherit;
}

html body .props-odds-engine .props-odds h1,
html body .props-odds-engine .props-odds h2,
html body .props-odds-engine .props-odds h3,
html body .props-odds-engine .props-odds h4,
html body .props-odds-engine .props-odds h5,
html body .props-odds-engine .props-odds h6 {
    text-transform: none;
}

html body .props-odds-engine .props-odds table {
    width: auto;
    table-layout: auto;
}

#realtime-status {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.odds-better, .odds-worse {
    color: inherit !important;
}

.odds-updating {
    position: relative;
}

.odds-updating::after {
    content: none !important;
}

.props-comparison-table {
    position: relative;
    left: -1px
}

.props-filter-cta {
    flex-wrap: wrap;
    flex-direction: row
}

.props-filter-cta > * {
    width: auto
}

label.matchup-item.upcoming {
    margin-bottom: 15px
}

.props-matchups-panel {
    z-index: 1000 !important
}


#props-more-panel {
    z-index: 9999
}

.flatpickr-calendar, .ui-datepicker {
    z-index: 10050 !important
}

#props-more-search, input#props-matchups-search {
    padding-left: 40px
}

.search-input svg {
    max-height: 20px;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: .5
}

#props-more-search:focus {
    outline: 0 !important
}

.close-time-panel {
    background-color: transparent !important;
    position: absolute !important;
    top: 7px;
    right: 7px
}


@keyframes oddsRing {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.over-odds, .under-odds {
    padding: var(--pill-pad-y, 2px) var(--pill-pad-x, 8px);
    border-radius: var(--pill-radius, 3px);
    display: inline-block;
    min-width: 0;
    text-align: center;
}

[data-outcome-id] {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 4px;
}

[data-outcome-id]:hover {
    transform: none;
    box-shadow: none;
}

.odds-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    color: transparent;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.odds-shimmer {
    position: relative !important;
    isolation: isolate !important;
}

.odds-shimmer::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: var(--pill-radius, 3px) !important;
    background: linear-gradient(90deg, rgba(240, 240, 240, 0.8) 25%, rgba(224, 224, 224, 0.8) 50%, rgba(240, 240, 240, 0.8) 75%) !important;
    background-size: 200% 100% !important;
    animation: loading 1.2s infinite !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.odds-shimmer > * {
    position: relative !important;
    z-index: 1 !important;
}

.props-odds.props-is-loading .over-odds,
.props-odds.props-is-loading .under-odds,
.props-odds.props-is-loading [data-outcome-id] {
    position: relative;
}

.props-odds.props-is-loading .over-odds::after,
.props-odds.props-is-loading .under-odds::after,
.props-odds.props-is-loading [data-outcome-id]::after {
    content: none !important;
}

@keyframes propsSkeletonPulse {
    0%, 100% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
}

.props-odds.props-is-loading .props-comparison-table tbody td:not(.player-info):not(.game-info):not(.game-info-dup):not(.game-info-mobile) {
    position: relative;
}

.props-odds.props-is-loading .props-comparison-table tbody td > *, .props-odds.props-is-loading .props-comparison-table tbody th.player-info > * {
    visibility: hidden !important;
}

.props-odds.props-is-loading .props-comparison-table td::after,
.props-odds.props-is-loading .props-comparison-table th::after {
    content: none !important;
}

.props-odds.props-is-loading .player-info::before {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e9edf3;
}

.props-odds.props-is-loading .player-info::before, .props-odds.props-is-loading .player-info::after {
    content: '';
    position: absolute;
    animation: propsSkeletonPulse 1.2s ease-in-out infinite;
    z-index: 0;
}

.props-odds.props-is-loading .player-info::after {
    left: 46px;
    right: 24px;
    top: calc(50% - 10px);
    height: 10px;
    border-radius: 6px;
    background: #eef2f7;
    box-shadow: 0 14px 0 0 #eef2f7;
}

.props-odds.props-is-loading .game-info::before,
.props-odds.props-is-loading .game-info-dup::before,
.props-odds.props-is-loading .game-info-mobile::before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 10px;
    height: 8px;
    border-radius: 4px;
    background: #eef2f7;
    animation: propsSkeletonPulse 1.2s ease-in-out infinite;
}

.props-odds.props-is-loading .game-info::after,
.props-odds.props-is-loading .game-info-dup::after,
.props-odds.props-is-loading .game-info-mobile::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 24px;
    width: 70px;
    height: 8px;
    border-radius: 4px;
    background: #eef2f7;
    animation: propsSkeletonPulse 1.2s ease-in-out infinite;
}

.props-odds.props-is-loading .line-with-market {
    position: relative;
}

.props-odds.props-is-loading .line-with-market::before {
    top: 8px;
    width: 48px;
    height: 10px;
    border-radius: 6px;
}

.props-odds.props-is-loading .line-with-market::before, .props-odds.props-is-loading .line-with-market::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #eef2f7;
    animation: propsSkeletonPulse 1.2s ease-in-out infinite;
}

.props-odds.props-is-loading .line-with-market::after {
    top: 24px;
    width: 64px;
    height: 8px;
    border-radius: 5px;
}

.props-odds.props-is-loading .odds-cell,
.props-odds.props-is-loading .over-odds,
.props-odds.props-is-loading .under-odds {
    position: relative;
}

.props-odds.props-is-loading .odds-cell::before,
.props-odds.props-is-loading .over-odds::before,
.props-odds.props-is-loading .under-odds::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 18px;
    border-radius: 999px;
    background: #eef2f7;
    animation: propsSkeletonPulse 1.2s ease-in-out infinite;
}

.props-odds.props-is-loading .sportsbook,
.props-odds.props-is-loading .updated-at {
    position: relative;
}

.props-odds.props-is-loading .sportsbook::before,
.props-odds.props-is-loading .updated-at::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 10px;
    border-radius: 6px;
    background: #eef2f7;
    animation: propsSkeletonPulse 1.2s ease-in-out infinite;
}

.odds-notification {
    position: fixed;
    top: 60px;
    right: 10px;
    z-index: 9998;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    font-size: 14px;
    line-height: 1.4;
}

.odds-notification.show {
    transform: translateX(0);
}

.odds-notification .notification-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.odds-notification .notification-body {
    opacity: 0.9;
    font-size: 12px;
}

.realtime-activity {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.realtime-activity.active {
    opacity: 1;
    transform: translateY(0);
}

.realtime-activity::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.odds-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sportsbook-logo {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
}

.odds-flash {
    animation: oddsFlash 1.2s ease-out;
}

@keyframes oddsFlash {
    0% {
        transform: scale(1.08);
        background-color: #dbeafe;
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.65), 0 0 0 4px rgba(59, 130, 246, 0.35);
    }
    40% {
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        transform: none;
        background-color: transparent;
        box-shadow: none;
    }
}

.odds-pill-flash::after {
    background: transparent !important;
    animation: none !important;
}

.odds-pair .over-odds.odds-blue-flash,
.odds-pair .under-odds.odds-blue-flash {
    position: relative !important;
    isolation: isolate !important;
}

.odds-pair .over-odds.odds-blue-flash:not(.best-odds)::before,
.odds-pair .under-odds.odds-blue-flash:not(.best-odds)::before {
    top: calc(var(--pill-pad-y, 2px) * -1) !important;
    left: calc(var(--pill-pad-x, 8px) * -1) !important;
    right: calc(var(--pill-pad-x, 8px) * -1) !important;
    bottom: calc(var(--pill-pad-y, 2px) * -1) !important;
}

.odds-pair .over-odds.odds-blue-flash:not(.best-odds)::before,
.odds-pair .under-odds.odds-blue-flash:not(.best-odds)::before, .odds-pair .over-odds.odds-blue-flash.best-odds::before,
.odds-pair .under-odds.odds-blue-flash.best-odds::before {
    content: '' !important;
    position: absolute !important;
    border-radius: var(--pill-radius, 3px) !important;
    background-color: rgba(0, 158, 255, 0.6) !important;
    pointer-events: none !important;
    animation: oddsBlueFadeOut 30s ease-out forwards !important;
    z-index: 0 !important;
}

.odds-pair .over-odds.odds-blue-flash.best-odds::before,
.odds-pair .under-odds.odds-blue-flash.best-odds::before {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.odds-pair .over-odds.odds-blue-flash > *,
.odds-pair .under-odds.odds-blue-flash > * {
    position: relative !important;
    z-index: 1 !important;
}

@keyframes oddsBlueFadeOut {
    0% {
        opacity: 0.6;
    }
    10% {
        opacity: 0.55;
    }
    30% {
        opacity: 0.4;
    }
    60% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
    }
}

.cell-flash {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.cell-flash::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(59, 130, 246, 0.35);
    pointer-events: none;
    animation: cellFadeOverlay 60s linear forwards;
    z-index: -1;
}

.cell-flash > * {
    position: relative;
    z-index: 1;
}

@keyframes cellFadeOverlay {
    0% {
        opacity: 1;
    }
    60% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
    }
}

#realtime-status {
    display: none !important;
}

@media (min-width: 769px) {
    .props-matchups-panel .panel-close-button,
    .props-more-panel .panel-close-button,
    .props-filters-panel .panel-close-button {
        display: none;
    }

    .props-odds .props-market-filter .props-search-button {
        display: none !important;
    }

    .props-odds .props-market-filter .props-search-panel, .props-odds .props-market-filter .props-search-panel[hidden] {
        display: inline-block !important;
    }

    .props-odds-scope #props-positions {
        width: 180px !important;
        flex: 0 0 180px !important;
    }

    .props-odds-scope #props-positions .props-select-toggle {
        width: 100% !important;
        min-width: 0 !important;
    }

    .props-odds .props-market-filter {
        overflow: visible !important;
        position: relative !important;
    }

    .props-odds .props-market-filter .props-quick-chips {
        overflow: visible !important;
        position: static !important;
    }

    .props-odds,
    .props-odds-engine,
    .props-odds-container {
        overflow: visible !important;
    }

    .props-odds [role="region"][aria-label*="filters" i],
    .props-odds .props-filters-region {
        overflow: visible !important;
        position: relative !important;
        z-index: 100 !important;
    }

    .props-odds .props-market-filter .props-more-panel {
        display: none;
        position: absolute !important;
        top: calc(100% + 8px) !important;
        left: 0 !important;
        z-index: 99999 !important;
        min-width: 420px !important;
        width: 420px !important;
        max-height: min(80vh, 600px) !important;
        background: white !important;
        border: 1px solid var(--props-border-light) !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .props-odds .props-market-filter .props-more-filter.open .props-more-panel {
        display: grid !important;
        grid-template-rows:auto auto 1fr !important;
    }
}

@media (min-width: 901px) {
    .props-odds .props-comparison-table .player-details .team.has-logo, .props-odds-scope .props-comparison-table .player-details .team.has-logo {
        display: none;
    }

    .props-odds .player-avatar-wrap.has-team-logo .team-logo-avatar, .props-odds-scope .player-avatar-wrap.has-team-logo .team-logo-avatar {
        display: block;
    }

    .props-odds,
    .props-odds-scope {
        --frozen-player: 182px !important;
        --props-col-min: 108px !important;
        --props-col-ideal: 112px !important;
        --props-col-max: 120px !important;
        --props-table-min: 1400px !important;
        --props-table-max: var(--props-table-min) !important;
    }

    th.player-col.sortable {
        min-width: 254px !important;
    }
}

@media (min-width: 992px) {
    :where(.props-odds, .props-odds-scope) [data-dialog-mode="modal"] {
        height: auto;
        max-height: var(--props-dialog-max-height);
        border-radius: var(--props-dialog-radius);
        box-shadow: var(--props-dialog-shadow);
        inset: auto;
    }
}

@media (min-width: 1024px) {
    .props-odds .props-market-filter {
        display: flex;
        flex-wrap: wrap;
    }

    .props-filter-cta {
        display: flex;
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
        --bs-gutter-x: 1.5rem
    }

    .props-filter-cta > * {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
}

@media (max-width: 1440px) {
    .props-odds table {
        margin-right: calc(1400px - 100vw);
    }
}

@media (max-width: 991px) {
    :where(.props-odds, .props-odds-scope) .props-market-filter .props-filter-cta {
        display: flex !important;
        flex-direction: row;
        gap: 12px;
        align-items: stretch;
    }


    :where(.props-odds, .props-odds-scope) .props-filter-bar {
        display: flex;
        gap: 12px;
        align-items: stretch;
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger {
        flex: 1 1 0%;
        min-width: 0;
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control {
        width: 100%;
        justify-content: center;
        height: var(--filter-height, 36px);
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control svg {
        flex-shrink: 0;
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control .props-matchups-label,
    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control .props-more-label,
    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control .props-search-label {
        font-size: 14px;
        font-weight: 500;
    }

    :where(.props-odds, .props-odds-scope) .props-market-filter > .filter-label {
        display: none;
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar {
        display: flex;
        gap: 8px;
        padding: 12px 16px;
        background: var(--props-bg, #ffffff);
        position: relative;
        z-index: 1100;
        flex-wrap: nowrap;
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger {
        flex: 1 1 0%;
        min-width: 0;
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control {
        width: 100%;
        justify-content: center;
        height: var(--filter-height, 36px);
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control svg {
        flex-shrink: 0;
    }

    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control .props-matchups-label,
    :where(.props-odds, .props-odds-scope) .props-filter-bar .filter-trigger .filter-control .props-search-label {
        font-size: 14px;
        font-weight: 500;
    }

    :where(.props-odds, .props-odds-scope) .props-positions-filter,
    :where(.props-odds, .props-odds-scope) .props-sort-filter {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .props-odds .props-comparison-table .player-details .team.has-logo, .props-odds-scope .props-comparison-table .player-details .team.has-logo {
        margin-right: 4px;
    }
}

@media (max-width: 768px) {
    .props-odds .props-show-toggle {

        align-items: baseline;
    }

    #props-more-panel .panel-header::before {
        content: "";
        display: block;
        width: 40px;
        height: 4px;
        border-radius: var(--props-radius-pill);
        opacity: .35;
        background: var(--props-text-muted);
        margin: 0 auto 8px
    }

    .props-odds .props-market-filter .props-matchups-panel .panel-header {
        justify-content: center;
        flex-direction: column
    }


    #props-filters-panel {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        max-height: 26vh !important
    }

    #props-filters-panel .section-title {
        margin-bottom: 10px
    }

    .props-odds .props-market-filter .props-search-wrap {
        width: calc(100% - 15px) !important;
        margin-left: 0 !important;
        display: none
    }

    .props-odds .panel {
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
        border-radius: 0;
        max-height: 70vh;
    }

    .props-odds .chips-container--scroll {
        padding-bottom: var(--props-space-2);
    }

    .props-odds .chips-container--scroll::-webkit-scrollbar {
        display: none;
    }

    .props-odds .props-quick-chips {
        max-width: 100vw !important;
        overflow-x: auto !important;
    }

    .props-odds .props-drawer,
    .props-odds .props-all-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
    }

    .props-odds .props-matchups-panel .panel-close-button,
    .props-odds .props-more-panel .panel-close-button,
    .props-odds-scope .props-matchups-panel .panel-close-button,
    .props-odds-scope .props-more-panel .panel-close-button {
        display: none !important;
    }

    :where(.props-odds, .props-odds-scope) {
        --props-page-gutter: 15px !important;
    }

    .props-odds .props-more-panel,
    .props-odds-scope .props-more-panel {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .props-odds .props-more-panel .panel-list,
    .props-odds-scope .props-more-panel .panel-list {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .props-odds.props-odds-scope,
    .props-odds .props-odds-container {
        width: 100% !important;
    }

    .props-odds [role="region"][aria-label*="filters" i] {
        max-width: 100vw !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
    }

    .props-odds .props-market-filter {
        width: 100% !important;
        gap: 8px;
        align-items: stretch;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .props-odds .props-market-filter,
    .props-odds-scope .props-market-filter {
        text-align: center;
    }

    .props-odds .props-market-filter label,
    .props-odds-scope .props-market-filter label {
        display: block;
        margin-bottom: 8px;
    }

    .props-odds .props-market-filter select,
    .props-odds-scope .props-market-filter select {
        width: 100% !important;
        max-width: 300px;
    }


    .props-odds-scope #props-positions {
        width: 120px !important;
        flex: 0 0 120px !important;
    }

    .props-odds .props-market-filter .props-positions-filter,
    .props-odds .props-market-filter .props-sort-filter {
        display: none !important;
    }

    .props-odds .props-market-filter .props-filters-filter {
        display: block !important;
        position: relative;
        order: 1000;
    }

    .props-odds .props-primary-selects {
        gap: 12px;
    }

    .props-odds .props-market-filter .props-quick-chips {
        width: calc(100vw - 30px) !important;
        max-width: calc(100vw - 30px) !important;
        width: 100% !important;
        justify-content: flex-start;
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        gap: 8px !important;
        padding: 4px 0 !important;
        padding-bottom: 8px !important;
    }

    .props-odds .props-market-filter .props-category-chips,
    .props-odds .props-market-filter .props-quick-chips,
    .props-odds .props-market-filter .props-game-chips {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 6px !important;
        padding-bottom: 11px;
        position: relative;
        width: 100% !important;
        justify-content: flex-start;
    }

    .props-odds .props-market-filter .props-category-chips .chip,
    .props-odds .props-market-filter .props-quick-chips .chip {
        flex: 0 0 auto !important;
        width: auto !important;

    }

    .props-odds .props-market-filter .props-game-chips .chip {
        height: 32px;
        font-size: 12px;
    }

    .props-odds .props-market-filter .props-quick-chips > * {
        scroll-snap-align: start !important;
    }

    .props-odds .props-market-filter .props-category-chips .chip,
    .props-odds .props-market-filter .props-quick-chips .chip,
    .props-odds .props-market-filter .props-game-chips .game-card,
    .props-odds .props-market-filter .props-more-filter {
        scroll-snap-align: start;
    }

    .props-odds .props-market-filter .props-quick-chips::-webkit-scrollbar {
        height: 4px !important;
    }

    .props-odds .props-market-filter .props-quick-chips::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1) !important;
        border-radius: 2px !important;
    }

    .props-odds .props-market-filter .props-quick-chips::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.3) !important;
        border-radius: 2px !important;
    }

    .props-odds .props-market-filter .props-quick-chips .props-more-filter {
        position: static !important;
        left: auto !important;
        z-index: auto !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .props-odds .props-market-filter .props-search-panel {
        position: relative;
        display: block !important;
        width: 100% !important;
        margin: 8px 0 0 0 !important;
        order: 1001 !important;
        flex-basis: 100% !important;
    }

    .props-odds .props-market-filter .props-search-panel[hidden] {
        display: none !important;
    }

    .props-odds .props-market-filter .props-search-panel input[type="search"] {
        display: block;
        width: 100% !important;
        min-width: 0;
    }


    .props-odds .props-market-filter .props-search-button {
        width: 34px;
        min-width: 34px;
    }

    .props-odds .props-market-filter .props-search-wrap.open {
        flex: 1 1 100% !important;
        flex-basis: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
    }

    .props-odds .props-market-filter .props-search-wrap.open .props-search-panel {
        position: relative;
        width: 100% !important;
        margin: 8px 0 0 0 !important;
        display: block !important;
    }

    .props-odds .props-market-filter .props-search-wrap.open .props-search-panel input[type="search"] {
        width: 100% !important;
        min-width: 0 !important;
        padding-right: 44px !important;
    }

    .props-odds .props-market-filter .props-search-wrap.open .props-search-panel .props-search-cancel {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center;
        position: absolute;
        top: 50%;
        right: 12px;
        width: 28px;
        height: 28px;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--filter-fg, #677689) !important;
        box-shadow: none !important;
        transform: translateY(-50%);
    }

    .props-odds .props-market-filter .props-search-wrap.open .props-search-panel .props-search-cancel svg {
        pointer-events: none;
    }

    .props-odds .props-market-filter .props-search-panel input#props-player-filter[type="search"] {
        padding-left: 40px !important;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%23677689" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>') !important;
        background-repeat: no-repeat !important;
        background-position: 12px center !important;
        background-size: 16px 16px !important;
    }

    .props-odds .props-market-filter .props-search-panel input[type="search"]::-webkit-search-cancel-button,
    .props-odds .props-market-filter input#props-player-filter[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
        appearance: none;
        height: 0;
        width: 0;
        margin: 0;
        padding: 0;
    }

    .props-odds .props-market-filter .props-search-wrap.open .props-search-button, .props-odds .props-market-filter.search-open > .filter-label,
    .props-odds .props-market-filter.search-open > #props-market,
    .props-odds .props-market-filter.search-open > .props-matchups-filter,
    .props-odds .props-market-filter.search-open > .props-filters-filter {
        display: none !important;
    }

    .props-odds .props-market-filter .props-positions-filter {
        order: 1000 !important;
        flex: 0 0 auto !important;
    }

    .props-odds .props-market-filter .props-more-filter.open .props-more-panel {
        max-width: 100vw !important;
        border-top-left-radius: 16px !important;
        border-top-right-radius: 16px !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        margin: 0 !important;
        background: #ffffff;
        box-shadow: 0 -18px 34px rgba(15, 23, 42, .22);
        border: 1px solid rgba(148, 163, 184, .18);
        border-top: 4px solid rgba(148, 163, 184, .15);
        z-index: 99999 !important;
        display: grid !important;
        grid-template-rows:auto auto 1fr !important;
        transform: translateY(0);
    }

    .props-odds .props-market-filter .props-more-filter.open .props-more-panel, .props-odds .props-more-panel,
    .props-odds-scope .props-more-panel,
    .props-odds .props-market-filter .props-more-filter.open .props-more-panel {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        width: 100% !important;
        max-height: 85vh !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .props-odds .props-more-panel,
    .props-odds-scope .props-more-panel,
    .props-odds .props-market-filter .props-more-filter.open .props-more-panel {
        max-width: 100% !important;
        border-radius: 16px 16px 0 0 !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15) !important;
        z-index: 1000;
    }

    .props-odds .props-more-panel .panel-list {
        padding: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .props-odds .props-more-panel .chips .chip {
        padding: 0 16px;
    }

    .props-odds .props-more-panel .search-box {
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
    }

    .props-odds .props-more-panel .market-list,
    .props-odds-scope .props-more-panel .market-list,
    .props-odds .props-more-panel .panel-list .market-list {
        display: grid !important;
        grid-template-columns:1fr !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .props-odds .props-more-panel .market-pill,
    .props-odds-scope .props-more-panel .market-pill,
    .props-odds .props-more-panel .panel-list .market-list .market-pill {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
        padding: 7px 14px !important;
        overflow: hidden !important;
    }

    .props-odds .props-more-panel .market-pill .market-label,
    .props-odds-scope .props-more-panel .market-pill .market-label {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 60px) !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        text-align: left !important;
    }

    .props-odds .props-more-panel .market-pill .market-count,
    .props-odds-scope .props-more-panel .market-pill .market-count,
    .props-odds .props-more-panel .market-pill .badge,
    .props-odds .props-more-panel .market-pill .count {
        flex: 0 0 auto !important;
        margin-left: 8px !important;
        white-space: nowrap !important;
    }

    .props-odds .props-more-panel .panel-header,
    .props-odds-scope .props-more-panel .panel-header {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .props-odds .props-market-filter .props-matchups-filter.open .props-matchups-panel {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100% !important;
        max-height: 78vh;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin: 0;
        background: linear-gradient(180deg, var(--props-drawer-surface-strong, rgba(240, 249, 255, 0.98)) 0%, var(--props-drawer-surface, #ffffff) 45%, #ffffff 100%);
        box-shadow: 0 -18px 38px rgba(15, 23, 42, .24);
        border: 1px solid rgba(148, 163, 184, .24);
        border-top: 3px solid rgba(0, 158, 255, .38);
    }

    .props-odds .props-market-filter .props-matchups-panel .panel-header {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .props-odds .props-market-filter .props-matchups-panel .panel-header::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        border-radius: var(--props-radius-pill);
        opacity: .35;
        background: var(--props-text-muted);
        margin: 0 auto 8px auto;
    }

    .props-odds .props-market-filter .props-matchups-panel .panel-list {
        padding: 10px 14px;
    }

    .props-odds .props-market-filter .props-matchups-panel .panel-actions {
        position: sticky;
        bottom: 0;
        z-index: 2;
        display: flex;
    }

    .props-odds .props-market-filter .props-filters-filter.open .props-filters-panel {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        width: 100% !important;
        max-height: 78vh !important;
        border-top-left-radius: 16px !important;
        border-top-right-radius: 16px !important;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin: 0;
        background: #ffffff !important;
        box-shadow: 0 -18px 34px rgba(15, 23, 42, .22);
        border: 1px solid rgba(148, 163, 184, .18);
        border-top: 4px solid rgba(148, 163, 184, .15);
    }

    .props-odds .props-market-filter .props-filters-filter.open .props-filters-panel,
    .props-odds .props-market-filter .props-filters-filter.open .props-filters-panel[hidden] {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        top: auto !important;
        max-height: 85vh !important;
        background: #ffffff !important;
        border-top-left-radius: 16px !important;
        border-top-right-radius: 16px !important;
        box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15) !important;
        z-index: 100002 !important;
        animation: slideUp 0.3s ease-out !important;
        overflow: hidden !important;
    }

    .props-filters-filter.open .props-filters-panel {
        position: fixed !important;
        isolation: isolate !important;
        transform: translateZ(0) !important;
    }

    .props-odds .props-filters-panel .panel-list {
        max-height: calc(85vh - 120px) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .props-odds .props-filters-panel .panel-actions {
        display: grid !important;
        padding: 12px 16px !important;
        background: #ffffff !important;
        border-top: 1px solid var(--props-border-light) !important;
    }

    .props-odds .props-market-filter .props-matchups-filter.open::before,
    .props-odds .props-market-filter .props-more-filter.open::before,
    .props-odds .props-market-filter .props-filters-filter.open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, .45);
        backdrop-filter: blur(2px);
        z-index: 19;
        pointer-events: none;
    }

    .props-odds .props-market-filter .props-filters-filter.open::before {
        content: '' !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 100000 !important;
        display: block !important;
    }

    .props-odds .props-table-wrapper {
        margin-bottom: 20px !important;
    }

    .props-odds .props-comparison-container {
        padding-bottom: 15px !important;
    }

    .props-odds .show-all-container,
    .props-odds .props-show-all,
    .props-odds button[class*="show-all"] {
        margin-top: 20px !important;
    }

    .props-odds .props-market-filter .props-positions-filter, .props-odds .props-market-filter .props-sort-filter {
        display: none !important;
    }

    .props-odds .props-odds-container .props-comparison-outer .props-comparison-container, .props-odds-scope .props-comparison-container {
        margin: 0;
        box-sizing: border-box;
        border-radius: 0;
    }

    .props-odds .props-comparison-table, .props-odds-scope .props-comparison-table {
        font-size: 12px;
        min-width: 100%;
    }

    .props-odds .props-comparison-table thead th, .props-odds-scope .props-comparison-table thead th {
        padding: 10px 4px;
        font-size: 11px;
    }


    .props-odds .props-comparison-table tbody tr, .props-odds-scope .props-comparison-table tbody tr {
        min-height: 36px;
    }

    .props-odds .player-col, .props-odds-scope .player-col,
    .props-odds .props-comparison-table .player-info, .props-odds-scope .props-comparison-table .player-info {
        width: var(--frozen-player);
        min-width: var(--frozen-player);
        max-width: var(--frozen-player);
        position: static !important;
        left: auto !important;
        z-index: auto !important;
        background: var(--props-bg) !important;
    }

    .props-odds .props-comparison-table thead th.player-col, .props-odds-scope .props-comparison-table thead th.player-col {
        position: relative !important;
        left: auto !important;
        z-index: 501 !important;
        background: #0f172a !important;
    }

    .props-odds .props-market-filter .props-search-wrap input[type="search"] {
        min-width: 0;
        width: 100%;
    }

    .props-odds .props-select, .props-odds-scope .props-select {
        padding: 0;
    }

    .props-odds .props-comparison-table tbody tr:nth-child(even) td, .props-odds-scope .props-comparison-table tbody tr:nth-child(even) td {
        background: #fafbfc;
    }

    .props-odds .props-comparison-table tbody tr:hover td, .props-odds-scope .props-comparison-table tbody tr:hover td {
        background: var(--props-bg-muted);
    }

    .props-odds,
    .props-odds-scope {
        --frozen-player: 170px !important;
        --props-col-min: 108px !important;
        --props-col-ideal: 112px !important;
        --props-col-max: 120px !important;
        --props-table-min: calc(var(--frozen-player) + (var(--props-col-ideal) * var(--props-sportsbook-count))) !important;
        --props-table-max: var(--props-table-min) !important;
        --props-scrollbar-size: 10px !important;
        --props-cell-pad-y: 12px !important;
        --props-cell-pad-x: 16px !important;
    }

    .props-odds .props-comparison-table col.col-sportsbook,
    .props-odds-scope .props-comparison-table col.col-sportsbook {
        width: var(--props-col-ideal, 112px) !important;
    }

    .props-odds .props-comparison-table tbody tr:nth-child(even) > td.player-info,
    .props-odds .props-comparison-table tbody tr:nth-child(even) > th.player-info {
        background: #f7f7f7 !important;
    }

    .props-odds .props-comparison-table tbody tr:hover > td.player-info,
    .props-odds .props-comparison-table tbody tr:hover > th.player-info {
        background: var(--props-bg-muted) !important;
    }


    .props-odds .player-avatar, .props-odds-scope .player-avatar {
        display: none;
    }

    .props-odds .props-comparison-table .player-info .player-name, .props-odds-scope .props-comparison-table .player-info .player-name {
        font-size: 13px;
    }

    .props-odds .props-comparison-table .player-info .player-details, .props-odds-scope .props-comparison-table .player-info .player-details {
        font-size: 11px;
    }

    .props-odds .props-comparison-table .player-info .player-details .jersey, .props-odds-scope .props-comparison-table .player-info .player-details .jersey {
        display: none;
    }

    .props-odds,
    .props-odds-scope {
        --props-col-min: 108px !important;
        --props-col-ideal: 112px !important;
        --props-col-max: 120px !important;
        --props-cell-pad-y: 12px !important;
        --props-cell-pad-x: 16px !important;
    }

    .props-odds .props-comparison-table .player-info, .props-odds-scope .props-comparison-table .player-info {
        position: static;
        left: auto;
        z-index: auto;
    }

    .props-modal-overlay {
        background: var(--props-overlay-color, rgba(15, 23, 42, 0.45));
        backdrop-filter: blur(var(--props-overlay-blur, 6px));
        -webkit-backdrop-filter: blur(var(--props-overlay-blur, 6px));
    }

    body .props-odds-engine .props-odds .props-drawer,
    body .props-odds-engine .props-odds .props-all-drawer,
    body .props-odds-engine .props-odds .props-more-panel,
    body .props-odds-engine .props-odds .props-matchups-panel {
        width: 100vw;
        max-width: 100vw;
    }

    .props-odds.props-is-loading .player-info::before,
    .props-odds.props-is-loading .player-info::after {
        content: none !important;
        display: none !important;
    }

    #realtime-status {
        top: 5px;
        right: 5px;
        font-size: 11px;
        padding: 6px 10px;
    }

    .odds-notification {
        right: 5px;
        top: 45px;
        max-width: calc(100vw - 20px);
    }

    .realtime-activity {
        bottom: 10px;
        right: 10px;
        font-size: 11px;
        padding: 6px 10px;
    }

    [data-outcome-id]:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .props-matchups-panel .panel-actions,
    .props-more-panel .panel-actions,
    .props-filters-panel .panel-actions {
        grid-template-columns:1fr;
    }

    .props-matchups-panel .panel-actions .ghost,
    .props-more-panel .panel-actions .ghost,
    .props-filters-panel .panel-actions .ghost {
        justify-content: flex-start;
        padding: 0 12px;
    }
}

@media (prefers-color-scheme: dark) {
    .props-odds-engine.dark-mode {
        --props-text-primary: #f1f5f9;
        --props-text-secondary: #cbd5e1;
        --props-bg-primary: #1e293b;
        --props-bg-secondary: #334155;
        --props-border-light: #475569;
        --props-border-default: #64748b;
    }

    .odds-loading {
        background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
    }
}

@media (prefers-contrast: high) {
    .odds-better {
        color: #000 !important;
        background: #00ff00 !important;
    }

    .odds-worse {
        color: #fff !important;
        background: #ff0000 !important;
    }

    .best-odds {
        box-shadow: inset 0 0 0 3px #000 !important;
    }
}

@media (prefers-contrast: more) {
    .props-odds .props-odds-container .props-comparison-outer .props-comparison-container::after, .props-odds-scope .props-comparison-container::after {
    }
}

@media (prefers-reduced-motion: reduce) {
    .props-odds .props-market-filter .props-quick-chips .chip,
    .props-odds-scope .props-market-filter .props-quick-chips .chip,
    .props-odds .props-market-filter .props-category-chips .chip,
    .props-odds-scope .props-market-filter .props-category-chips .chip,
    .props-odds .props-more-panel .category-chips .chip,
    .props-odds-scope .props-more-panel .category-chips .chip,
    .props-odds .props-more-panel .chips .chip,
    .props-odds-scope .props-more-panel .chips .chip,
    .props-odds .props-market-filter .props-game-chips .game-card,
    .props-odds-scope .props-market-filter .props-game-chips .game-card,
    .props-odds .props-more-panel .panel-list .market-list .market-pill,
    .props-odds-scope .props-more-panel .panel-list .market-list .market-pill,
    .props-odds .props-matchups-panel .panel-close-button,
    .props-odds-scope .props-matchups-panel .panel-close-button,
    .props-odds .props-matchups-panel .panel-actions button,
    .props-odds-scope .props-matchups-panel .panel-actions button {
        transition: none !important;
        animation: none !important;
    }

    .odds-updating::before,
    .best-odds,
    .cell-flash::after,
    .odds-pill-flash::after,
    .odds-loading {
        animation: none !important;
    }

    [data-outcome-id] {
        transition: none !important;
    }
}