/* _content/AllGameTimes/Components/Layout/MainLayout.razor.rz.scp.css */
:root[b-g8x1or950k] {
    --topbar-h: 3.5rem;
    --panel-w: 240px;
}

/* Remove default browser margins globally */
:global(html, body)[b-g8x1or950k] {
    margin: 0;
    padding: 0;
}

#app-layout[b-g8x1or950k] {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content container */
.main-container[b-g8x1or950k] {
    display: flex;
    flex: 1;
    padding-left: var(--panel-w); /* Reserve space for fixed side panel on desktop */
    transition: padding-left 0.3s ease;
    padding-top: var(--topbar-h); /* Align content below the top bar */
}

.content-area[b-g8x1or950k] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* Prevents horizontal scroll from content overflow */
}

/* Side panel positioning (global to reach the component) */
:global(.side-panel)[b-g8x1or950k] {
    position: fixed;
    top: var(--topbar-h); /* Position directly below the top bar */
    left: 0;
    height: calc(100vh - var(--topbar-h));
    width: var(--panel-w);
    z-index: 100;
    transition: transform 0.3s ease;
    transform: translateX(0); /* visible on desktop */
}

/* Panel visibility toggle */
:global(#app-layout:not(.sp-open) .side-panel)[b-g8x1or950k] {
    transform: translateX(-100%);
}

/* When panel is closed, expand content */
#app-layout:not(.sp-open) .main-container[b-g8x1or950k] {
    padding-left: 0;
}

/* Mobile layout */
@media (max-width: 1024px) {
    :global(.side-panel)[b-g8x1or950k] {
        transform: translateX(-100%); /* hidden by default */
    }

    :global(#app-layout.sp-open .side-panel)[b-g8x1or950k] {
        transform: translateX(0); /* overlay when toggled */
    }

    .main-container[b-g8x1or950k] {
        padding-left: 0; /* never reserve space on mobile */
    }
}

/* Error UI */
#blazor-error-ui[b-g8x1or950k] {
    background: #ffffe0;
    bottom: 0;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-g8x1or950k] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* _content/AllGameTimes/Components/Layout/NavMenu.razor.rz.scp.css */
.top-nav-bar[b-wd8js9qu65] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: 0 1.5rem;
    height: var(--topbar-h, 3.5rem);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 101;
}

.navbar-brand[b-wd8js9qu65] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #1f2937;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    flex: 0 0 auto;
    transition: opacity 0.2s ease;
}

    .navbar-brand:hover[b-wd8js9qu65] {
        opacity: 0.8;
    }

.nav-logo[b-wd8js9qu65] {
    height: 32px;
    width: auto;
}

.nav-title[b-wd8js9qu65] {
    display: flex;
    align-items: center;
}

.brand-game[b-wd8js9qu65] {
    color: #D84315;
}
/* Hamburger */
.hamburger[b-wd8js9qu65] {
    display: none;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111827;
    border-radius: 8px;
    padding: .4rem .6rem;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    z-index: 130;
    transition: all 0.2s ease;
}

    .hamburger:hover[b-wd8js9qu65] {
        background: #f9fafb;
        border-color: #9ca3af;
    }

    .hamburger:active[b-wd8js9qu65] {
        transform: scale(0.95);
    }

.nav-menu[b-wd8js9qu65] {
    display: flex;
    align-items: center;
}

.nav-items[b-wd8js9qu65] {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: .25rem;
}

.nav-item[b-wd8js9qu65] {
    position: relative;
}

.nav-link[b-wd8js9qu65] {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .9rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: .95rem;
    color: #000; /* Changed from #4b5563 to black */
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}

    .nav-link:hover[b-wd8js9qu65] {
        background-color: #f3f4f6;
        color: #000; /* Changed from #1f2937 to black */
    }

    .nav-link.active[b-wd8js9qu65] {
        background-color: #eff6ff;
        color: #000;
        box-shadow: 0 1px 3px rgba(37, 99, 235, 0.3);
    }

    .nav-link .bi[b-wd8js9qu65] {
        font-size: 1.15rem;
    }

.nav-link-icon[b-wd8js9qu65] {
    height: 1.15rem;
    width: auto;
}

.caret[b-wd8js9qu65] {
    margin-left: .15rem;
    font-size: .85rem;
    transition: transform .2s ease;
}

.has-submenu.open > .nav-link .caret[b-wd8js9qu65] {
    transform: rotate(180deg);
}
/* Submenu */
.submenu[b-wd8js9qu65] {
    display: none;
    position: absolute;
    top: calc(100% + .35rem);
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: .4rem;
    z-index: 120;
    list-style: none;
    margin: 0;
    animation: slideDown-b-wd8js9qu65 0.2s ease;
}

@keyframes slideDown-b-wd8js9qu65 {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submenu li[b-wd8js9qu65] {
    list-style: none;
    margin: 0;
    padding: 0;
}

.has-submenu.open > .submenu[b-wd8js9qu65] {
    display: block;
}

.submenu-link[b-wd8js9qu65] {
    display: block;
    padding: .55rem .75rem;
    border-radius: 7px;
    color: #000; /* Changed from #374151 to black */
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
    white-space: nowrap;
    transition: all 0.15s ease;
}

    .submenu-link:hover[b-wd8js9qu65] {
        background: #f3f4f6;
        color: #000; /* Changed from #1f2937 to black */
        transform: translateX(2px);
    }

    .submenu-link.active[b-wd8js9qu65] {
        background: #eff6ff;
        color: #000;
        font-weight: 600;
    }
/* Mobile (<= 992px) */
@media (max-width: 992px) {
    .top-nav-bar[b-wd8js9qu65] {
        justify-content: flex-start;
        padding: 0 1rem;
    }

    .hamburger[b-wd8js9qu65] {
        display: inline-flex;
        order: 3;
        margin-left: auto;
    }

    .nav-menu[b-wd8js9qu65] {
        order: 2;
    }

    .nav-items[b-wd8js9qu65] {
        position: fixed;
        top: calc(var(--topbar-h, 3.5rem) + .5rem);
        right: 1rem;
        left: auto;
        width: max-content;
        min-width: 240px;
        max-width: calc(100vw - 2rem);
        max-height: calc(100vh - var(--topbar-h, 3.5rem) - 1rem);
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        padding: .6rem;
        display: none;
        gap: .2rem;
        z-index: 1000;
        animation: slideIn-b-wd8js9qu65 0.2s ease;
    }

    @keyframes slideIn-b-wd8js9qu65 {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-items.open[b-wd8js9qu65] {
        display: flex !important;
    }

    .nav-item[b-wd8js9qu65] {
        width: 100%;
    }

    .nav-link[b-wd8js9qu65] {
        width: 100%;
        justify-content: flex-start;
        border: 1px solid transparent;
        padding: .6rem .75rem;
    }

    .submenu[b-wd8js9qu65] {
        display: none;
        position: static;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        box-shadow: none;
        margin: .3rem 0 0 .5rem;
        padding: .3rem;
        background: #f9fafb;
    }

    .has-submenu.open > .submenu[b-wd8js9qu65] {
        display: block;
    }

    .submenu-link[b-wd8js9qu65] {
        padding: .5rem .65rem;
    }
}
/* Tablet adjustments */
@media (max-width: 768px) {
    .nav-logo[b-wd8js9qu65] {
        height: 28px;
    }

    .navbar-brand[b-wd8js9qu65] {
        font-size: 1.15rem;
    }

    .nav-items[b-wd8js9qu65] {
        min-width: 220px;
        right: .75rem;
    }
}
/* _content/AllGameTimes/Components/Layout/NflSidePanel.razor.rz.scp.css */
/* Scoped styles for NflSidePanel */

.team-link[b-40qyod7l5p] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: background-color 0.2s ease, color 0.2s ease;
    gap: 0.75rem;
}

    .team-link:hover[b-40qyod7l5p] {
        background-color: var(--light-blue);
        color: var(--text-dark);
        text-decoration: none;
    }

    /* Subtle hover effect using the team's color from the color-dot */
    .team-link:hover .color-dot[b-40qyod7l5p] {
        box-shadow: 0 0 8px 2px var(--primary-color, var(--text-secondary));
    }

.color-dot[b-40qyod7l5p] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: box-shadow 0.2s ease;
}

.team-name[b-40qyod7l5p] {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* _content/AllGameTimes/Components/Layout/SidePanel.razor.rz.scp.css */
:root[b-gnq9163dzr] {
    --topbar-h: 3.5rem;
    --panel-w: 240px;
}

.side-panel[b-gnq9163dzr] {
    position: fixed;
    top: var(--topbar-h);
    left: 0;
    height: calc(100vh - var(--topbar-h));
    width: var(--panel-w);
    z-index: 100;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-radius: 0; /* Override panel's default radius for a flush look */
    border-left: none;
    border-top: none;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    height: calc(100vh - 56px); /* Adjust 56px to match your top nav bar's height */
    overflow: hidden;
    position: sticky;
    top: 56px; /* Adjust 56px to match your top nav bar's height */
}

[b-gnq9163dzr] .panel-content {
    flex-grow: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-blue) var(--bg-light);
}

[b-gnq9163dzr] .panel-content::-webkit-scrollbar {
    width: 8px;
}

[b-gnq9163dzr] .panel-content::-webkit-scrollbar-track {
    background: var(--bg-light);
}

[b-gnq9163dzr] .panel-content::-webkit-scrollbar-thumb {
    background-color: var(--primary-blue);
    border-radius: 4px;
}

:global(#app-layout.sp-open) .side-panel[b-gnq9163dzr] {
    transform: translateX(0);
}

@media (min-width: 900px) {
    .side-panel[b-gnq9163dzr] {
        transform: translateX(0);
    }
}

.show-panel-btn[b-gnq9163dzr] {
    position: fixed;
    top: calc(var(--topbar-h) + 10px);
    left: 0;
    width: 28px;
    height: 40px;
    background: var(--primary-blue);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    z-index: 99;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

:global(#app-layout:not(.sp-open)) .show-panel-btn[b-gnq9163dzr] {
    opacity: 1;
    pointer-events: auto;
}

.panel-content[b-gnq9163dzr] {
    padding: 1rem 0;
}

.panel-header[b-gnq9163dzr] {
    padding: 0 1rem 1rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.panel-title[b-gnq9163dzr] {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.panel-actions[b-gnq9163dzr] {
    display: flex;
    align-items: center;
}

.panel-subtitle[b-gnq9163dzr] {
    font-size: 0.8rem;
    color: var(--text-light);
}

.search-box[b-gnq9163dzr] {
    padding: 0 1rem;
    margin-bottom: 0.75rem;
}

.search-input[b-gnq9163dzr] {
    width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-dark);
    padding: 0.5rem;
    font-size: 0.85rem;
}

.search-input:focus[b-gnq9163dzr] {
    outline: 2px solid var(--primary-blue);
    border-color: var(--primary-blue);
}

.panel-section[b-gnq9163dzr] {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.section-header[b-gnq9163dzr] {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.section-meta[b-gnq9163dzr] {
    font-size: 0.7rem;
    color: var(--text-light);
}

.team-list[b-gnq9163dzr] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-link[b-gnq9163dzr] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: background-color 0.2s ease, color 0.2s ease;
    gap: 0.75rem;
    justify-content: space-between;
}

.team-link:hover[b-gnq9163dzr] {
    background-color: var(--light-blue);
    color: var(--text-dark);
    text-decoration: none;
}

.color-dot[b-gnq9163dzr] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.team-name[b-gnq9163dzr] {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rank-badge[b-gnq9163dzr] {
    background-color: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
}

.conf-chip[b-gnq9163dzr] {
    background-color: #e9ecef;
    color: #495057;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
}

.empty-hint[b-gnq9163dzr] {
        padding: 1rem;
        text-align: center;
        font-size: 0.85rem;
        color: var(--text-light);
    }
    
@media (max-width: 420px) {
        .side-panel[b-gnq9163dzr] {
            width: 100vw;
        }
    }

/* Hide side panel and its toggle button on mobile */
@media (max-width: 1024px) {
    [b-gnq9163dzr] .side-panel,
    [b-gnq9163dzr] .show-panel-btn {
        display: none !important;
    }
}
/* _content/AllGameTimes/Components/Pages/CFB/ncaaf.razor.rz.scp.css */
/* --- New Ad Layout Styles --- */
.page-layout-right-ad[b-ahdxpw861b] {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.content-wrapper[b-ahdxpw861b] {
    min-width: 0;
    max-width: 100%;
}

.sidebar[b-ahdxpw861b] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* --- Modified Base Page Style --- */
.schedule-page[b-ahdxpw861b] {
    --accent-primary: #005fcc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    background-color: var(--bg-secondary);
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.panel[b-ahdxpw861b] {
    background-color: var(--surface-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* --- Header --- */
.page-header[b-ahdxpw861b] {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-brand[b-ahdxpw861b] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon[b-ahdxpw861b] {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.page-title[b-ahdxpw861b] {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.page-subtitle[b-ahdxpw861b] {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Controls */
.controls-bar[b-ahdxpw861b] {
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.week-nav[b-ahdxpw861b], .timezone-chips[b-ahdxpw861b] {
    display: flex;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.btn-nav[b-ahdxpw861b], .btn-chip[b-ahdxpw861b] {
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-nav[b-ahdxpw861b] {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-right: 1px solid var(--border-color);
}

    .btn-nav:last-child[b-ahdxpw861b] {
        border-right: none;
    }

    .btn-nav:hover[b-ahdxpw861b], .btn-chip:hover[b-ahdxpw861b] {
        background: var(--light-blue);
        color: var(--primary-blue);
    }

    .btn-nav.active[b-ahdxpw861b], .btn-chip.active[b-ahdxpw861b] {
        background: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
    }

.timezone-selector[b-ahdxpw861b] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timezone-label[b-ahdxpw861b] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-chip[b-ahdxpw861b] {
    padding: 0.5rem 0.8rem;
    border-radius: 7px;
    font-size: 0.85rem;
}

/* Filters */
.filter-area[b-ahdxpw861b] {
    padding: 0.75rem 1rem;
}

.filter-content[b-ahdxpw861b] {
    padding-top: 0.5rem;
}

.filter-panel-grid[b-ahdxpw861b] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.filter-column[b-ahdxpw861b] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.filter-options-header[b-ahdxpw861b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.35rem;
}

.filter-options-title[b-ahdxpw861b] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-clear-filter[b-ahdxpw861b] {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    padding: 0.25rem 0.5rem;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all var(--transition-fast);
}

    .btn-clear-filter:hover[b-ahdxpw861b] {
        background: var(--light-blue);
    }

.filter-grid[b-ahdxpw861b] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.filter-card[b-ahdxpw861b] {
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-white);
}

    .filter-card:hover[b-ahdxpw861b] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
        border-color: var(--primary-blue);
    }

    .filter-card.active[b-ahdxpw861b] {
        border-color: var(--primary-blue);
        background: var(--primary-blue);
        box-shadow: none;
    }

        .filter-card.active .filter-card-name[b-ahdxpw861b], .filter-card.active .filter-card-check-icon[b-ahdxpw861b] {
            color: #fff !important;
        }

.filter-card-check-icon[b-ahdxpw861b] {
    opacity: 0;
    transform: scale(0.7);
    transition: all var(--transition-fast);
}

.filter-card.active .filter-card-check-icon[b-ahdxpw861b] {
    opacity: 1;
    transform: scale(1);
}

/* Main */
.main-content[b-ahdxpw861b] {
    flex-grow: 1;
    max-width: 100%;
    overflow-x: hidden;
}

.schedule-grid[b-ahdxpw861b] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-card[b-ahdxpw861b] {
    padding: 1rem 1.5rem;
}

.day-header[b-ahdxpw861b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.day-title[b-ahdxpw861b] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.day-controls[b-ahdxpw861b] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.btn-toggle-day[b-ahdxpw861b] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.schedule-viewport[b-ahdxpw861b] {
    overflow-x: auto;
    padding-top: 1rem;
    max-width: 100%;
}

.schedule-table-container[b-ahdxpw861b] {
    min-width: 1000px;
    --grid-scale: 1;
}

@media (max-width: 1400px) {
    .schedule-table-container[b-ahdxpw861b] {
        --grid-scale: 0.95;
    }
}

@media (max-width: 1280px) {
    .schedule-table-container[b-ahdxpw861b] {
        --grid-scale: 0.90;
    }
}

@media (max-width: 1150px) {
    .schedule-table-container[b-ahdxpw861b] {
        --grid-scale: 0.85;
    }
}

@media (max-width: 1040px) {
    .schedule-table-container[b-ahdxpw861b] {
        --grid-scale: 0.80;
    }

    .page-layout-right-ad[b-ahdxpw861b] {
        grid-template-columns: 1fr;
        padding: 0.75rem;
    }

    .sidebar[b-ahdxpw861b] {
        display: none;
    }
}

@supports (zoom: 1) {
    .schedule-table-container[b-ahdxpw861b] {
        zoom: var(--grid-scale);
        transform: none;
        width: auto;
    }
}

@supports not (zoom: 1) {
    .schedule-table-container[b-ahdxpw861b] {
        transform: scale(var(--grid-scale));
        transform-origin: top left;
        width: calc(100% / var(--grid-scale));
    }
}

.schedule-table[b-ahdxpw861b] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.station-header[b-ahdxpw861b], .time-header[b-ahdxpw861b] {
    text-align: left;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid var(--border-color);
}

.time-header[b-ahdxpw861b] {
    text-align: center;
}

.station-cell[b-ahdxpw861b] {
    padding: 0.5rem;
    font-weight: 600;
    vertical-align: top;
    width: 120px;
}

.game-cell[b-ahdxpw861b] {
    padding: 4px;
}

.empty-cell[b-ahdxpw861b] {
    background-color: var(--surface-secondary);
    border-radius: 8px;
}

/* Matchup Card */
.matchup-card[b-ahdxpw861b] {
    display: flex;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: var(--shadow-small);
    border: 1px solid var(--border-color);
}

    .matchup-card.is-completed[b-ahdxpw861b] {
        opacity: 0.6;
    }

.segment[b-ahdxpw861b] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.35rem 0.6rem;
    font-size: 1.05rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    overflow: hidden;
    box-sizing: border-box;
}

    .segment.left[b-ahdxpw861b] {
        background-color: var(--away-color);
        color: var(--away-secondary);
        text-align: left;
    }

    .segment.right[b-ahdxpw861b] {
        background-color: var(--home-color);
        color: var(--home-secondary);
        align-items: flex-end;
        text-align: right;
    }

.team-stack[b-ahdxpw861b] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
    max-width: 100%;
    overflow: hidden;
}

.segment.right .team-stack[b-ahdxpw861b] {
    align-items: flex-end;
}

.team-name[b-ahdxpw861b] {
    font-size: 1em;
    font-weight: 800;
    white-space: nowrap;
}

/* DD pill under team name */
.dd-pill[b-ahdxpw861b] {
    display: inline-block;
    padding: 1px 2px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border-radius: 6px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 75%;
    line-height: 1.2;
    overflow: visible;
}

.segment.left .dd-pill[b-ahdxpw861b] {
    text-align: left;
}

.segment.right .dd-pill[b-ahdxpw861b] {
    text-align: right;
}

/* Smaller dd-pill in schedule grid */
.schedule-grid .matchup-card .dd-pill[b-ahdxpw861b] {
    font-size: 0.62rem;
}

/* VS badge */
.vs-badge[b-ahdxpw861b] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--surface-primary);
    color: var(--text-primary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--border-color);
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 2px;
}

/* --- NEW Live Game Visuals for MLB --- */
.live-display-container[b-ahdxpw861b] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 80%;
    pointer-events: none;
}

.base-paths[b-ahdxpw861b] {
    display: grid;
    grid-template-areas: ". second ."
        "third . first";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 24px;
    height: 24px;
}

.base[b-ahdxpw861b] {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

    .base.occupied[b-ahdxpw861b] {
        background-color: #e53935;
        border-color: #fff;
    }

    .base.first[b-ahdxpw861b] {
        grid-area: first;
    }

    .base.second[b-ahdxpw861b] {
        grid-area: second;
    }

    .base.third[b-ahdxpw861b] {
        grid-area: third;
    }

.outs-display[b-ahdxpw861b] {
    display: flex;
    gap: 4px;
}

.out-indicator[b-ahdxpw861b] {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

    .out-indicator.lit[b-ahdxpw861b] {
        background-color: #fff;
    }
/* --- END NEW Live Game Visuals --- */


/* Live footer: Restored for original MLB text display */
.live-score-footer[b-ahdxpw861b] {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1.05;
    text-shadow: none;
    pointer-events: none;
    border: none;
}

    .live-score-footer .line[b-ahdxpw861b] {
        white-space: nowrap;
    }

.matchup-card:has(.live-score-footer) .vs-badge[b-ahdxpw861b] {
    display: none !important;
}


/* Desktop compact */
.schedule-grid .matchup-card[b-ahdxpw861b] {
    height: 42px;
}

    .schedule-grid .matchup-card .segment[b-ahdxpw861b] {
        font-size: 0.85rem;
    }

    .schedule-grid .matchup-card .vs-badge[b-ahdxpw861b] {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .schedule-grid .matchup-card .dd-pill[b-ahdxpw861b] {
        font-size: 0.62rem;
    }

.schedule-grid .live-score-footer[b-ahdxpw861b] {
    bottom: 2px;
    font-size: 0.65rem;
}

/* Subtle live pulse (no outline, no "LIVE" badge) */
@keyframes agt-live-pulse-b-ahdxpw861b {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.28);
    }

    60% {
        box-shadow: 0 0 0 12px rgba(231, 76, 60, 0.00);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.00);
    }
}

.schedule-page .matchup-card.is-live[b-ahdxpw861b] {
    position: relative;
    animation: agt-live-pulse-b-ahdxpw861b 2.2s ease-in-out infinite !important;
    outline: 0;
}

    .schedule-page .matchup-card.is-live[b-ahdxpw861b]::after {
        content: none !important;
    }

/* Mobile view */
.mobile-schedule-list[b-ahdxpw861b] {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.mobile-time-header[b-ahdxpw861b] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--surface-primary);
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: none;
    outline: none;
}

.mobile-day-header[b-ahdxpw861b] {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem;
    background-color: var(--surface-secondary);
    border-radius: 8px;
    text-align: center;
}

/* Tablet optimizations */
@media (max-width: 768px) {
    .page-layout-right-ad[b-ahdxpw861b] {
        padding: 0.5rem;
    }

    .page-header[b-ahdxpw861b] {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }

    .page-title[b-ahdxpw861b] {
        font-size: 1.3rem;
    }

    .brand-icon[b-ahdxpw861b] {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .controls-bar[b-ahdxpw861b] {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }

    .filter-panel-grid[b-ahdxpw861b] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .filter-area[b-ahdxpw861b] {
        padding: 0.5rem 0.75rem;
    }
}

/* Mobile optimizations */
@media (max-width: 992px) {
    .schedule-page > .page-header[b-ahdxpw861b] {
        display: none;
    }

    .page-layout-right-ad[b-ahdxpw861b] {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .sidebar[b-ahdxpw861b] {
        display: none;
    }

    .schedule-grid[b-ahdxpw861b] {
        display: none;
    }

    .panel[b-ahdxpw861b] {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .filter-area[b-ahdxpw861b],
    .day-card[b-ahdxpw861b] {
        padding: 0.75rem 1rem;
    }

    .mobile-schedule-list[b-ahdxpw861b] {
        display: flex;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .page-layout-right-ad[b-ahdxpw861b] {
        padding: 0.25rem;
    }

    .filter-area[b-ahdxpw861b],
    .day-card[b-ahdxpw861b] {
        padding: 0.5rem 0.75rem;
    }

    .controls-bar[b-ahdxpw861b] {
        padding: 0.4rem 0.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    .week-nav[b-ahdxpw861b], .timezone-chips[b-ahdxpw861b] {
        width: 100%;
        justify-content: center;
    }

    .filter-grid[b-ahdxpw861b] {
        gap: 0.3rem;
    }

    .filter-card[b-ahdxpw861b] {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* No Games State */
.no-games-state[b-ahdxpw861b] {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--surface-primary);
    border-radius: 12px;
}

.no-games-icon[b-ahdxpw861b] {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.no-games-title[b-ahdxpw861b] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.no-games-message[b-ahdxpw861b] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-reset-filters[b-ahdxpw861b] {
    background-color: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-anchor[b-ahdxpw861b] {
    position: relative;
    top: -80px;
    display: block;
    height: 0;
    overflow: hidden;
}
/* _content/AllGameTimes/Components/Pages/Home.razor.rz.scp.css */
/* --- AllGameTimes Light Theme --- */
.landing-page[b-yx2wvzjw42] {
    --bg-primary: #ffffff;
    --surface-primary: #f8f9fa;
    --surface-secondary: #e9ecef;
    --accent-primary: #D84315;
    --accent-secondary: #00A8FF;
    --text-primary: #212529;
    --text-secondary: #495057;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-small: 0 1px 2px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-large: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 20px rgba(216, 67, 21, 0.4);
    --topbar-h: 3.5rem;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    min-height: 100vh;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* * FIX 1: MOBILE-FIRST PADDING
     * Start with minimal padding for mobile devices.
     * We'll add more horizontal padding for larger screens in the media queries.
     */
    padding: 1rem 1rem 6rem 1rem;
}

/* --- Welcome Modal --- */
.welcome-modal-overlay[b-yx2wvzjw42] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn-b-yx2wvzjw42 0.3s ease;
}

@keyframes fadeIn-b-yx2wvzjw42 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.welcome-modal[b-yx2wvzjw42] {
    background: var(--bg-primary);
    border-radius: 24px;
    padding: 3rem;
    max-width: 560px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp-b-yx2wvzjw42 0.4s ease;
}

@keyframes slideUp-b-yx2wvzjw42 {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn[b-yx2wvzjw42] {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--surface-secondary);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-primary);
}

    .modal-close-btn:hover[b-yx2wvzjw42] {
        background: var(--accent-primary);
        color: white;
        transform: rotate(90deg);
    }

.modal-icon[b-yx2wvzjw42] {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-primary), #FF6B35);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(216, 67, 21, 0.3);
}

/* * FIX 2: CORRECTED CSS SYNTAX
 * The original file had a syntax error here, which broke all subsequent styles.
 * This rule is now correctly defined.
 */
.modal-title[b-yx2wvzjw42] {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.modal-subtitle[b-yx2wvzjw42] {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.modal-features[b-yx2wvzjw42] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.modal-feature-item[b-yx2wvzjw42] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.modal-feature-icon[b-yx2wvzjw42] {
    font-size: 2rem;
    flex-shrink: 0;
}

.modal-feature-item p[b-yx2wvzjw42] {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.5;
}

.modal-feature-item strong[b-yx2wvzjw42] {
    color: var(--text-primary);
}

.modal-cta-btn[b-yx2wvzjw42] {
    width: 100%;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .modal-cta-btn:hover[b-yx2wvzjw42] {
        background: #C23410;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(216, 67, 21, 0.4);
    }

/* --- Enhanced Hero Section --- */
.hero-section-enhanced[b-yx2wvzjw42] {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%), url('/images/stadium-background.jpg') no-repeat center center;
    background-size: cover;
    padding: 5rem 1rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.hero-badge[b-yx2wvzjw42] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-primary), #FF6B35);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(216, 67, 21, 0.3);
    animation: float-b-yx2wvzjw42 3s ease-in-out infinite;
}

@keyframes float-b-yx2wvzjw42 {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-title[b-yx2wvzjw42] {
    /*
     * FIX 3: FLUID TYPOGRAPHY
     * clamp() smoothly scales the font size between a minimum, a preferred (viewport-based), and a maximum value.
     * It will be 2.5rem on small screens, 4rem on large screens, and scale fluidly in between.
     */
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--text-primary);
    line-height: 1.1;
}

.hero-title-accent[b-yx2wvzjw42] {
    color: var(--accent-primary);
    position: relative;
}

.hero-subtitle[b-yx2wvzjw42] {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 800px;
    margin-inline: auto;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-cta-group[b-yx2wvzjw42] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-cta[b-yx2wvzjw42] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .hero-cta.primary[b-yx2wvzjw42] {
        background: var(--accent-primary);
        color: #fff;
        box-shadow: 0 4px 20px rgba(216, 67, 21, 0.3);
    }

        .hero-cta.primary:hover[b-yx2wvzjw42] {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 30px rgba(216, 67, 21, 0.5);
        }

    .hero-cta.secondary[b-yx2wvzjw42] {
        background: transparent;
        color: var(--text-primary);
        border: 2px solid var(--border-color);
    }

        .hero-cta.secondary:hover[b-yx2wvzjw42] {
            background: var(--surface-secondary);
            border-color: var(--accent-primary);
            color: var(--accent-primary);
            transform: translateY(-2px);
        }

.hero-stat-pills[b-yx2wvzjw42] {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-pill[b-yx2wvzjw42] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
}

    .stat-pill i[b-yx2wvzjw42] {
        color: var(--accent-primary);
        font-size: 1.2rem;
    }

    .stat-pill.highlight-pill[b-yx2wvzjw42] {
        background: linear-gradient(135deg, #FF6B35, var(--accent-primary));
        color: white;
        border: none;
        box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
        animation: pulse-glow-b-yx2wvzjw42 2s ease-in-out infinite;
    }

        .stat-pill.highlight-pill i[b-yx2wvzjw42] {
            color: white;
            animation: wiggle-b-yx2wvzjw42 1.5s ease-in-out infinite;
        }

@keyframes pulse-glow-b-yx2wvzjw42 {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(216, 67, 21, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(216, 67, 21, 0.6);
    }
}

@keyframes wiggle-b-yx2wvzjw42 {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

/* --- Sports Cards Section --- */
.sports-section[b-yx2wvzjw42] {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.section-title[b-yx2wvzjw42] {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.sports-grid[b-yx2wvzjw42] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Slightly smaller min for more flexibility */
    gap: 1.5rem; /* Reduced gap slightly for mobile */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Added padding to prevent cards from touching screen edges */
}

.sport-card[b-yx2wvzjw42] {
    background: var(--bg-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

    .sport-card:hover[b-yx2wvzjw42] {
        transform: translateY(-8px);
        box-shadow: var(--shadow-glow);
        border-color: var(--accent-primary);
    }

.click-indicator[b-yx2wvzjw42] {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--accent-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(216, 67, 21, 0.4);
    animation: bounce-b-yx2wvzjw42 2s ease-in-out infinite;
}

@keyframes bounce-b-yx2wvzjw42 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.sport-card:hover .click-indicator[b-yx2wvzjw42] {
    background: #C23410;
    animation: none;
}

.sport-card-image[b-yx2wvzjw42] {
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
}

.sport-card-photo[b-yx2wvzjw42] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.sport-card:hover .sport-card-photo[b-yx2wvzjw42] {
    transform: scale(1.08);
}

.sport-card-gradient[b-yx2wvzjw42] {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.15));
}

.sport-card-content[b-yx2wvzjw42] {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sport-card-title[b-yx2wvzjw42] {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.sport-card-description[b-yx2wvzjw42] {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.sport-card-actions[b-yx2wvzjw42] {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

/* * FIX: INCREASED SPECIFICITY FOR BUTTONS
 * By adding ".sport-card" before the button class, we make this rule
 * more specific, preventing generic button styles from overriding it.
 */
.sport-card .btn-sport-action[b-yx2wvzjw42] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .sport-card .btn-sport-action.primary[b-yx2wvzjw42] {
        background: var(--accent-primary);
        color: white;
        border-color: var(--accent-primary);
    }

    .sport-card .btn-sport-action.secondary[b-yx2wvzjw42] {
        background: transparent;
        color: var(--text-primary);
    }

    .sport-card .btn-sport-action:hover[b-yx2wvzjw42] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-small);
    }

    .sport-card .btn-sport-action.secondary:hover[b-yx2wvzjw42] {
        background: var(--surface-secondary);
        border-color: var(--surface-secondary);
    }
}

/* * FIX 4: STYLING THE BUTTONS
 * These styles were previously broken due to the syntax error. They will now apply correctly.
 */
.btn-sport-action[b-yx2wvzjw42] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .btn-sport-action.primary[b-yx2wvzjw42] {
        background: var(--accent-primary);
        color: white;
        border-color: var(--accent-primary);
    }

    .btn-sport-action.secondary[b-yx2wvzjw42] {
        background: transparent;
        color: var(--text-primary);
    }

    .btn-sport-action:hover[b-yx2wvzjw42] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-small);
    }

    .btn-sport-action.secondary:hover[b-yx2wvzjw42] {
        background: var(--surface-secondary);
        border-color: var(--surface-secondary);
    }


/* --- Responsive Adjustments --- */

/* Tablet View */
@media (max-width: 768px) {
    .hero-cta-group[b-yx2wvzjw42] {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta[b-yx2wvzjw42] {
        width: 100%;
        justify-content: center;
    }

    .hero-stat-pills[b-yx2wvzjw42] {
        flex-direction: column;
        align-items: center;
    }

    .section-title[b-yx2wvzjw42] {
        font-size: 2rem;
    }

    .welcome-modal[b-yx2wvzjw42] {
        padding: 2rem 1.5rem;
    }

    .modal-title[b-yx2wvzjw42] {
        font-size: 1.6rem;
    }
}

/* Larger Screens - Add back horizontal padding */
@media (min-width: 1200px) {
    .landing-page[b-yx2wvzjw42] {
        padding: 2rem 192px 6rem 192px;
    }
}
/* _content/AllGameTimes/Components/Pages/MLB/Mlb.razor.rz.scp.css */
/* --- New Ad Layout Styles --- */
.page-layout-right-ad[b-hu5jp59v3w] {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.content-wrapper[b-hu5jp59v3w] {
    min-width: 0;
    max-width: 100%;
}

.sidebar[b-hu5jp59v3w] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* --- Modified Base Page Style --- */
.schedule-page[b-hu5jp59v3w] {
    --accent-primary: #005fcc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    background-color: var(--bg-secondary);
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.panel[b-hu5jp59v3w] {
    background-color: var(--surface-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* --- Header --- */
.page-header[b-hu5jp59v3w] {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-brand[b-hu5jp59v3w] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon[b-hu5jp59v3w] {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.page-title[b-hu5jp59v3w] {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.page-subtitle[b-hu5jp59v3w] {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Controls */
.controls-bar[b-hu5jp59v3w] {
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.week-nav[b-hu5jp59v3w], .timezone-chips[b-hu5jp59v3w] {
    display: flex;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.btn-nav[b-hu5jp59v3w], .btn-chip[b-hu5jp59v3w] {
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-nav[b-hu5jp59v3w] {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-right: 1px solid var(--border-color);
}

    .btn-nav:last-child[b-hu5jp59v3w] {
        border-right: none;
    }

    .btn-nav:hover[b-hu5jp59v3w], .btn-chip:hover[b-hu5jp59v3w] {
        background: var(--light-blue);
        color: var(--primary-blue);
    }

    .btn-nav.active[b-hu5jp59v3w], .btn-chip.active[b-hu5jp59v3w] {
        background: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
    }

.timezone-selector[b-hu5jp59v3w] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timezone-label[b-hu5jp59v3w] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-chip[b-hu5jp59v3w] {
    padding: 0.5rem 0.8rem;
    border-radius: 7px;
    font-size: 0.85rem;
}

/* Filters */
.filter-area[b-hu5jp59v3w] {
    padding: 0.75rem 1rem;
}

.filter-content[b-hu5jp59v3w] {
    padding-top: 0.5rem;
}

.filter-panel-grid[b-hu5jp59v3w] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.filter-column[b-hu5jp59v3w] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.filter-options-header[b-hu5jp59v3w] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.35rem;
}

.filter-options-title[b-hu5jp59v3w] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-clear-filter[b-hu5jp59v3w] {
    background: transparent;
    border: none;
    color: var(--primary-blue);
    padding: 0.25rem 0.5rem;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all var(--transition-fast);
}

    .btn-clear-filter:hover[b-hu5jp59v3w] {
        background: var(--light-blue);
    }

.filter-grid[b-hu5jp59v3w] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.filter-card[b-hu5jp59v3w] {
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-white);
}

    .filter-card:hover[b-hu5jp59v3w] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
        border-color: var(--primary-blue);
    }

    .filter-card.active[b-hu5jp59v3w] {
        border-color: var(--primary-blue);
        background: var(--primary-blue);
        box-shadow: none;
    }

        .filter-card.active .filter-card-name[b-hu5jp59v3w], .filter-card.active .filter-card-check-icon[b-hu5jp59v3w] {
            color: #fff !important;
        }

.filter-card-check-icon[b-hu5jp59v3w] {
    opacity: 0;
    transform: scale(0.7);
    transition: all var(--transition-fast);
}

.filter-card.active .filter-card-check-icon[b-hu5jp59v3w] {
    opacity: 1;
    transform: scale(1);
}

/* Main */
.main-content[b-hu5jp59v3w] {
    flex-grow: 1;
    max-width: 100%;
    overflow-x: hidden;
}

.schedule-grid[b-hu5jp59v3w] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-card[b-hu5jp59v3w] {
    padding: 1rem 1.5rem;
}

.day-header[b-hu5jp59v3w] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.day-title[b-hu5jp59v3w] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.day-controls[b-hu5jp59v3w] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.btn-toggle-day[b-hu5jp59v3w] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.schedule-viewport[b-hu5jp59v3w] {
    overflow-x: auto;
    padding-top: 1rem;
    max-width: 100%;
}

.schedule-table-container[b-hu5jp59v3w] {
    min-width: 1000px;
    --grid-scale: 1;
}

@media (max-width: 1400px) {
    .schedule-table-container[b-hu5jp59v3w] {
        --grid-scale: 0.95;
    }
}

@media (max-width: 1280px) {
    .schedule-table-container[b-hu5jp59v3w] {
        --grid-scale: 0.90;
    }
}

@media (max-width: 1150px) {
    .schedule-table-container[b-hu5jp59v3w] {
        --grid-scale: 0.85;
    }
}

@media (max-width: 1040px) {
    .schedule-table-container[b-hu5jp59v3w] {
        --grid-scale: 0.80;
    }

    .page-layout-right-ad[b-hu5jp59v3w] {
        grid-template-columns: 1fr;
        padding: 0.75rem;
    }

    .sidebar[b-hu5jp59v3w] {
        display: none;
    }
}

@supports (zoom: 1) {
    .schedule-table-container[b-hu5jp59v3w] {
        zoom: var(--grid-scale);
        transform: none;
        width: auto;
    }
}

@supports not (zoom: 1) {
    .schedule-table-container[b-hu5jp59v3w] {
        transform: scale(var(--grid-scale));
        transform-origin: top left;
        width: calc(100% / var(--grid-scale));
    }
}

.schedule-table[b-hu5jp59v3w] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.station-header[b-hu5jp59v3w], .time-header[b-hu5jp59v3w] {
    text-align: left;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid var(--border-color);
}

.time-header[b-hu5jp59v3w] {
    text-align: center;
}

.station-cell[b-hu5jp59v3w] {
    padding: 0.5rem;
    font-weight: 600;
    vertical-align: top;
    width: 120px;
}

.game-cell[b-hu5jp59v3w] {
    padding: 4px;
}

.empty-cell[b-hu5jp59v3w] {
    background-color: var(--surface-secondary);
    border-radius: 8px;
}

/* Matchup Card */
.matchup-card[b-hu5jp59v3w] {
    display: flex;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: var(--shadow-small);
    border: 1px solid var(--border-color);
}

    .matchup-card.is-completed[b-hu5jp59v3w] {
        opacity: 0.6;
    }

.segment[b-hu5jp59v3w] {
    flex: 1 1 50%; /* FIX #1: This stabilizes the flex layout */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.35rem 0.6rem;
    font-size: 1.05rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}

    .segment.left[b-hu5jp59v3w] {
        background-color: var(--away-color);
        color: var(--away-secondary);
        text-align: left;
    }

    .segment.right[b-hu5jp59v3w] {
        background-color: var(--home-color);
        color: var(--home-secondary);
        align-items: flex-end;
        text-align: right;
    }

.team-stack[b-hu5jp59v3w] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
    max-width: 100%;
    overflow: hidden;
}

.segment.right .team-stack[b-hu5jp59v3w] {
    align-items: flex-end;
}

.team-name[b-hu5jp59v3w] {
    font-size: 1em;
    font-weight: 800;
    white-space: nowrap;
}

/* DD pill under team name */
.dd-pill[b-hu5jp59v3w] {
    display: inline-block;
    padding: 1px 2px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border-radius: 6px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 75%;
    line-height: 1.2;
    overflow: visible;
}

.segment.left .dd-pill[b-hu5jp59v3w] {
    text-align: left;
}

.segment.right .dd-pill[b-hu5jp59v3w] {
    text-align: right;
}

.schedule-grid .matchup-card .dd-pill[b-hu5jp59v3w] {
    font-size: 0.62rem;
}

/* VS badge */
.vs-badge[b-hu5jp59v3w] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--surface-primary);
    color: var(--text-primary);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--border-color);
    font-size: 0.9rem;
    white-space: nowrap;
    padding: 2px;
}

/* Live Game Visuals for MLB */
.live-display-container[b-hu5jp59v3w] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 80%;
    pointer-events: none;
}

.base-paths[b-hu5jp59v3w] {
    display: grid;
    grid-template-areas: ". second ."
        "third . first";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 24px;
    height: 24px;
}

.base[b-hu5jp59v3w] {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

    .base.occupied[b-hu5jp59v3w] {
        background-color: #e53935;
        border-color: #fff;
    }

    .base.first[b-hu5jp59v3w] {
        grid-area: first;
    }

    .base.second[b-hu5jp59v3w] {
        grid-area: second;
    }

    .base.third[b-hu5jp59v3w] {
        grid-area: third;
    }

.outs-display[b-hu5jp59v3w] {
    display: flex;
    gap: 4px;
}

.out-indicator[b-hu5jp59v3w] {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

    .out-indicator.lit[b-hu5jp59v3w] {
        background-color: #fff;
    }

/* Live footer: Restored for original MLB text display */
.live-score-footer[b-hu5jp59v3w] {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1.05;
    text-shadow: none;
    pointer-events: none;
    border: none;
}

    .live-score-footer .line[b-hu5jp59v3w] {
        white-space: nowrap;
    }

.matchup-card:has(.live-score-footer) .vs-badge[b-hu5jp59v3w] {
    display: none !important;
}


/* Desktop compact */
.schedule-grid .matchup-card[b-hu5jp59v3w] {
    height: 42px;
}

    .schedule-grid .matchup-card .segment[b-hu5jp59v3w] {
        font-size: 0.85rem;
    }

    .schedule-grid .matchup-card .vs-badge[b-hu5jp59v3w] {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    /* FIX #2: Hide meta-row on the compact desktop grid view */
    .schedule-grid .matchup-card .meta-row[b-hu5jp59v3w] {
        display: none;
    }

    .schedule-grid .matchup-card .dd-pill[b-hu5jp59v3w] {
        font-size: 0.62rem;
    }

.schedule-grid .live-score-footer[b-hu5jp59v3w] {
    bottom: 2px;
    font-size: 0.65rem;
}

/* Subtle live pulse (no outline, no "LIVE" badge) */
@keyframes agt-live-pulse-b-hu5jp59v3w {
    0% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.28);
    }

    60% {
        box-shadow: 0 0 0 12px rgba(231, 76, 60, 0.00);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.00);
    }
}

.schedule-page .matchup-card.is-live[b-hu5jp59v3w] {
    position: relative;
    animation: agt-live-pulse-b-hu5jp59v3w 2.2s ease-in-out infinite !important;
    outline: 0;
}

    .schedule-page .matchup-card.is-live[b-hu5jp59v3w]::after {
        content: none !important;
    }

/* Mobile view */
.mobile-schedule-list[b-hu5jp59v3w] {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.mobile-time-header[b-hu5jp59v3w] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--surface-primary);
    font-weight: 600;
    width: 100%;
    text-align: left;
    cursor: pointer;
    border: none;
    outline: none;
}

.mobile-day-header[b-hu5jp59v3w] {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem;
    background-color: var(--surface-secondary);
    border-radius: 8px;
    text-align: center;
}

/* Tablet optimizations */
@media (max-width: 768px) {
    .page-layout-right-ad[b-hu5jp59v3w] {
        padding: 0.5rem;
    }

    .page-header[b-hu5jp59v3w] {
        padding: 0.75rem 1rem;
        gap: 1rem;
    }

    .page-title[b-hu5jp59v3w] {
        font-size: 1.3rem;
    }

    .brand-icon[b-hu5jp59v3w] {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .controls-bar[b-hu5jp59v3w] {
        padding: 0.5rem 0.75rem;
        gap: 0.75rem;
    }

    .filter-panel-grid[b-hu5jp59v3w] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .filter-area[b-hu5jp59v3w] {
        padding: 0.5rem 0.75rem;
    }
}

/* Mobile optimizations */
@media (max-width: 992px) {
    .schedule-page > .page-header[b-hu5jp59v3w] {
        display: none;
    }

    .page-layout-right-ad[b-hu5jp59v3w] {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .sidebar[b-hu5jp59v3w] {
        display: none;
    }

    .schedule-grid[b-hu5jp59v3w] {
        display: none;
    }

    .panel[b-hu5jp59v3w] {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .filter-area[b-hu5jp59v3w],
    .day-card[b-hu5jp59v3w] {
        padding: 0.75rem 1rem;
    }

    .mobile-schedule-list[b-hu5jp59v3w] {
        display: flex;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .page-layout-right-ad[b-hu5jp59v3w] {
        padding: 0.25rem;
    }

    .filter-area[b-hu5jp59v3w],
    .day-card[b-hu5jp59v3w] {
        padding: 0.5rem 0.75rem;
    }

    .controls-bar[b-hu5jp59v3w] {
        padding: 0.4rem 0.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    .week-nav[b-hu5jp59v3w], .timezone-chips[b-hu5jp59v3w] {
        width: 100%;
        justify-content: center;
    }

    .filter-grid[b-hu5jp59v3w] {
        gap: 0.3rem;
    }

    .filter-card[b-hu5jp59v3w] {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

/* No Games State */
.no-games-state[b-hu5jp59v3w] {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--surface-primary);
    border-radius: 12px;
}

.no-games-icon[b-hu5jp59v3w] {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.no-games-title[b-hu5jp59v3w] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.no-games-message[b-hu5jp59v3w] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-reset-filters[b-hu5jp59v3w] {
    background-color: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-anchor[b-hu5jp59v3w] {
    position: relative;
    top: -80px;
    display: block;
    height: 0;
    overflow: hidden;
}
/* _content/AllGameTimes/Components/Pages/NCAAB/Ncaab.razor.rz.scp.css */
/* --- New Ad Layout Styles --- */
.page-layout-right-ad[b-ql2skpv39t] {
    display: grid;
    /* Main content takes up available space, sidebar is fixed at 200px */
    grid-template-columns: 1fr 200px;
    gap: 1.5rem; /* Space between content and ad */
    padding: 1rem; /* Overall padding for the layout */
}

.content-wrapper[b-ql2skpv39t] {
    /* Prevents wide content from breaking the grid */
    min-width: 0;
}

.sidebar[b-ql2skpv39t] {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Aligns ad to the top */
}

/* --- Modified Base Page Style --- */
.schedule-page[b-ql2skpv39t] {
    --accent-primary: #FF8C00; /* Basketball orange accent */
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* Padding is now handled by the page-layout-right-ad wrapper */
    padding: 0;
    background-color: var(--bg-secondary);
    overflow-x: hidden;
}

.panel[b-ql2skpv39t] {
    background-color: var(--surface-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    inline-size: 100%;
    max-inline-size: 100%;
}

/* --- Header --- */
.page-header[b-ql2skpv39t] {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.header-brand[b-ql2skpv39t] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon[b-ql2skpv39t] {
    width: 40px;
    height: 40px;
    background: var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
}

.page-title[b-ql2skpv39t] {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.page-subtitle[b-ql2skpv39t] {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* Controls */
.controls-bar[b-ql2skpv39t] {
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.week-nav[b-ql2skpv39t], .timezone-chips[b-ql2skpv39t] {
    display: flex;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.btn-nav[b-ql2skpv39t], .btn-chip[b-ql2skpv39t] {
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.btn-nav[b-ql2skpv39t] {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    border-right: 1px solid var(--border-color);
}

    .btn-nav:last-child[b-ql2skpv39t] {
        border-right: none;
    }

    .btn-nav:hover[b-ql2skpv39t], .btn-chip:hover[b-ql2skpv39t] {
        background: color-mix(in srgb, var(--accent-primary) 15%, transparent);
        color: var(--accent-primary);
    }

    .btn-nav.active[b-ql2skpv39t], .btn-chip.active[b-ql2skpv39t] {
        background: var(--accent-primary);
        color: white;
        border-color: var(--accent-primary);
    }

.timezone-selector[b-ql2skpv39t] {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timezone-label[b-ql2skpv39t] {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-chip[b-ql2skpv39t] {
    padding: 0.5rem 0.8rem;
    border-radius: 7px;
    font-size: 0.85rem;
}

.btn-toggle-section[b-ql2skpv39t] {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

    .btn-toggle-section:hover[b-ql2skpv39t] {
        background: var(--bg-light);
        color: var(--accent-primary);
    }

/* Filters */
.filter-area[b-ql2skpv39t] {
    padding: 0.75rem 1rem;
}

.filter-content[b-ql2skpv39t] {
    padding-top: 0.5rem;
}

.filter-panel-grid[b-ql2skpv39t] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.filter-column[b-ql2skpv39t] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.filter-options-header[b-ql2skpv39t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0.35rem;
}

.filter-options-title[b-ql2skpv39t] {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.btn-clear-filter[b-ql2skpv39t] {
    background: transparent;
    border: none;
    color: var(--accent-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 7px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all var(--transition-fast);
}

    .btn-clear-filter:hover[b-ql2skpv39t] {
        background: color-mix(in srgb, var(--accent-primary) 15%, transparent);
    }

.filter-grid[b-ql2skpv39t] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.filter-card[b-ql2skpv39t] {
    border: 1px solid var(--border-color);
    border-radius: 7px;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 500;
    background: var(--bg-white);
    position: relative;
    gap: 0.3rem;
}

    .filter-card:hover[b-ql2skpv39t] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft);
        border-color: var(--accent-primary);
    }

    .filter-card.active[b-ql2skpv39t] {
        border-color: var(--accent-primary);
        background: var(--accent-primary);
        box-shadow: none;
    }

        .filter-card.active .filter-card-name[b-ql2skpv39t], .filter-card.active .filter-card-check-icon[b-ql2skpv39t] {
            color: #fff !important;
        }

.filter-card-check-icon[b-ql2skpv39t] {
    opacity: 0;
    transform: scale(0.7);
    transition: all var(--transition-fast);
}

.filter-card.active .filter-card-check-icon[b-ql2skpv39t] {
    opacity: 1;
    transform: scale(1);
}

/* Main */
.main-content[b-ql2skpv39t] {
    flex-grow: 1;
}

.schedule-grid[b-ql2skpv39t] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-card[b-ql2skpv39t] {
    padding: 1rem 0;
}

.day-header[b-ql2skpv39t] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem 1rem 1.5rem; /* Add padding here */
    border-bottom: 1px solid var(--border-color);
}

.day-title[b-ql2skpv39t] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.day-controls[b-ql2skpv39t] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.games-count[b-ql2skpv39t] {
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-toggle-day[b-ql2skpv39t] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0.25rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

    .btn-toggle-day:hover[b-ql2skpv39t] {
        background: var(--bg-light);
        color: var(--accent-primary);
    }

.schedule-viewport[b-ql2skpv39t] {
    overflow-x: auto;
    padding-top: .5rem;
}

.schedule-table-container[b-ql2skpv39t] {
    min-width: 1200px;
    --grid-scale: 1;
}

@supports (zoom: 1) {
    .schedule-table-container[b-ql2skpv39t] {
        zoom: var(--grid-scale);
        transform: none;
        width: auto;
    }
}

@supports not (zoom: 1) {
    .schedule-table-container[b-ql2skpv39t] {
        transform: scale(var(--grid-scale));
        transform-origin: top left;
        width: calc(100% / var(--grid-scale));
    }
}

.schedule-table[b-ql2skpv39t] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.station-header[b-ql2skpv39t], .time-header[b-ql2skpv39t] {
    text-align: left;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid var(--border-color);
}

.time-header[b-ql2skpv39t] {
    text-align: center;
}

.station-cell[b-ql2skpv39t] {
    padding: 0.5rem;
    font-weight: 600;
    vertical-align: top;
    width: 120px;
}

.game-cell[b-ql2skpv39t] {
    padding: 0;
    position: relative;
}

.game-cell-inner[b-ql2skpv39t] {
    � �width: 100%;
    � �height: 100%;
    /* Remove all padding and positioning */
}

.empty-cell[b-ql2skpv39t] {
    background-color: var(--surface-secondary);
    border-radius: 8px;
}

/* Matchup Card - Basketball styling */
.matchup-card[b-ql2skpv39t] {
    display: flex;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: var(--shadow-small);
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

    .matchup-card:hover[b-ql2skpv39t] {
        transform: translateY(-1px);
        box-shadow: var(--shadow-medium);
    }

    .matchup-card.is-completed[b-ql2skpv39t] {
        opacity: 0.7;
    }

.segment[b-ql2skpv39t] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.35rem 0.6rem;
    font-size: 1.05rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

    .segment.left[b-ql2skpv39t] {
        background-color: var(--away-color);
        color: var(--away-secondary);
        text-align: left;
    }

    .segment.right[b-ql2skpv39t] {
        background-color: var(--home-color);
        color: var(--home-secondary);
        align-items: flex-end;
        text-align: right;
    }

.team-stack[b-ql2skpv39t] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
}

.segment.right .team-stack[b-ql2skpv39t] {
    align-items: flex-end;
}

.team-name[b-ql2skpv39t] {
    font-size: 1em;
    font-weight: 800;
    white-space: nowrap;
}

/* DD pill under team name - for possession indicator */
.dd-pill[b-ql2skpv39t] {
    display: inline-block;
    padding: 1px 4px;
    font-size: 0.68rem;
    font-weight: 700;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border-radius: 4px;
    white-space: nowrap;
    max-width: 75%;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.3);
}

.segment.left .dd-pill[b-ql2skpv39t] {
    text-align: left;
}

.segment.right .dd-pill[b-ql2skpv39t] {
    text-align: right;
}

/* VS badge */
.vs-badge[b-ql2skpv39t] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--surface-primary);
    color: var(--text-primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--border-color);
    font-size: 0.9rem;
}

/* Live footer: Basketball style */
.live-score-footer[b-ql2skpv39t] {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1.05;
    text-shadow: none;
    pointer-events: none;
    border: 1px solid rgba(255,255,255,0.2);
}

    .live-score-footer .line[b-ql2skpv39t] {
        white-space: nowrap;
    }

.matchup-card:has(.live-score-footer) .vs-badge[b-ql2skpv39t] {
    display: none !important;
}

/* Desktop compact */
.schedule-grid .matchup-card[b-ql2skpv39t] {
    height: 42px;
}

    .schedule-grid .matchup-card .segment[b-ql2skpv39t] {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }

    .schedule-grid .matchup-card .vs-badge[b-ql2skpv39t] {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .schedule-grid .matchup-card .dd-pill[b-ql2skpv39t] {
        font-size: 0.6rem;
        padding: 1px 3px;
    }

.schedule-grid .live-score-footer[b-ql2skpv39t] {
    bottom: 2px;
    font-size: 0.65rem;
    padding: 1px 4px;
}

/* Subtle live pulse for basketball games */
@keyframes ncaab-live-pulse-b-ql2skpv39t {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.28);
    }

    60% {
        box-shadow: 0 0 0 12px rgba(255, 140, 0, 0.00);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.00);
    }
}

.schedule-page .matchup-card.is-live[b-ql2skpv39t] {
    position: relative;
    animation: ncaab-live-pulse-b-ql2skpv39t 2.2s ease-in-out infinite !important;
    outline: 0;
}

    .schedule-page .matchup-card.is-live[b-ql2skpv39t]::after {
        content: none !important;
    }

/* Mobile view */
.mobile-schedule-list[b-ql2skpv39t] {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.mobile-day-section[b-ql2skpv39t] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-day-header[b-ql2skpv39t] {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    background-color: var(--surface-secondary);
    border-radius: 8px;
    text-align: center;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

@media (max-width: 992px) {
    .schedule-grid[b-ql2skpv39t] {
        display: none;
    }

    .page-layout-right-ad[b-ql2skpv39t] {
        /* Collapse to a single column */
        grid-template-columns: 1fr;
    }

    .sidebar.sidebar-right[b-ql2skpv39t] {
        /* Hide the ad sidebar */
        display: none;
    }

    .panel[b-ql2skpv39t] {
        inline-size: 100%;
        max-inline-size: calc(100vw - 2rem);
        margin-inline: auto;
    }

    .page-header[b-ql2skpv39t], .filter-area[b-ql2skpv39t], .day-card[b-ql2skpv39t] {
        padding: 0.75rem 1rem;
    }

    .mobile-schedule-list.bytime[b-ql2skpv39t] {
        display: grid;
        gap: 0.6rem;
    }

    .mobile-time-section.panel[b-ql2skpv39t] {
        border: 1px solid var(--border-color);
        border-radius: 10px;
        background: var(--surface-primary);
        box-shadow: var(--shadow-medium);
        overflow: hidden;
        box-sizing: border-box;
        inline-size: 100%;
        max-inline-size: calc(100vw - 6rem); /* Increased from 2rem to 4rem */
        margin-inline: auto;
    }

    .mobile-time-section.is-stale[b-ql2skpv39t] {
        opacity: 0.7;
    }

    .mobile-time-header[b-ql2skpv39t] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .5rem;
        padding: .5rem 1rem;
        border-bottom: 1px solid var(--border-color);
        background: var(--surface-primary);
        font-weight: 600;
        width: 100%;
        text-align: left;
        cursor: pointer;
        border: none;
        outline: none;
        color: var(--text-primary);
        transition: all var(--transition-fast);
    }

        .mobile-time-header:hover[b-ql2skpv39t] {
            background: var(--bg-light);
        }

        .mobile-time-header .left[b-ql2skpv39t] {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .mobile-time-header .time[b-ql2skpv39t] {
            font-weight: 600;
        }

        .mobile-time-header .count[b-ql2skpv39t] {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .mobile-time-header .chevron[b-ql2skpv39t] {
            transition: transform var(--transition-fast);
        }

    .mobile-time-body[b-ql2skpv39t] {
        display: block;
    }

    .mobile-time-section.collapsed .mobile-time-body[b-ql2skpv39t] {
        display: none;
    }

    .mobile-time-section.collapsed .mobile-time-header .chevron[b-ql2skpv39t] {
        transform: rotate(0deg);
    }

    .mobile-network-row[b-ql2skpv39t] {
        display: grid;
        grid-template-columns: 30px 1fr;
        gap: .1rem;
        padding: .25rem 0;
        border-bottom: 1px solid var(--border-color);
        box-sizing: border-box;
    }

        .mobile-network-row:last-child[b-ql2skpv39t] {
            border-bottom: none;
        }

    .network-label[b-ql2skpv39t] {
        font-weight: 600;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        font-size: 0.72rem;
    }

    .network-games[b-ql2skpv39t] {
        display: flex;
        flex-direction: column;
        gap: .4rem;
    }

    .mobile-game-item[b-ql2skpv39t] {
        background-color: var(--surface-primary);
        border-radius: 8px;
        padding: 0;
        box-shadow: none;
    }

        .mobile-game-item .matchup-card[b-ql2skpv39t] {
            height: 54px;
            width: 85%;
            max-width: 100%;
        }

            .mobile-game-item .matchup-card .segment[b-ql2skpv39t] {
                font-size: 0.86rem;
            }

            .mobile-game-item .matchup-card .vs-badge[b-ql2skpv39t] {
                width: 22px;
                height: 22px;
                font-size: 0.63rem;
            }

            .mobile-game-item .matchup-card .dd-pill[b-ql2skpv39t] {
                font-size: 0.65rem;
            }
}

/* Extra small screens */
@media (max-width: 480px) {
    .mobile-time-section[b-ql2skpv39t] {
        --panel-scale: 0.92;
    }

    @supports (zoom: 1) {
        .mobile-time-section[b-ql2skpv39t] {
            zoom: var(--panel-scale);
            transform: none;
            width: auto;
        }
    }

    @supports not (zoom: 1) {
        .mobile-time-section[b-ql2skpv39t] {
            transform: scale(var(--panel-scale));
            transform-origin: top left;
            width: calc(100% / var(--panel-scale));
        }
    }

    .filter-panel-grid[b-ql2skpv39t] {
        grid-template-columns: 1fr;
    }

    .page-title[b-ql2skpv39t] {
        font-size: 1.3rem;
    }

    .controls-bar[b-ql2skpv39t] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .timezone-selector[b-ql2skpv39t] {
        justify-content: space-between;
    }

    .timezone-chips[b-ql2skpv39t] {
        flex: 1;
    }

    .btn-chip[b-ql2skpv39t] {
        flex: 1;
        justify-content: center;
    }
}

/* No Games State */
.no-games-state[b-ql2skpv39t] {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--surface-primary);
    border-radius: 12px;
}

.no-games-icon[b-ql2skpv39t] {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.no-games-title[b-ql2skpv39t] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.no-games-message[b-ql2skpv39t] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-reset-filters[b-ql2skpv39t] {
    background-color: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

    .btn-reset-filters:hover[b-ql2skpv39t] {
        background-color: color-mix(in srgb, var(--accent-primary) 90%, black);
        transform: translateY(-1px);
    }

.team-anchor[b-ql2skpv39t] {
    position: relative;
    top: -80px;
    display: block;
    height: 0;
    overflow: hidden;
}

/* Basketball-specific adjustments */
.schedule-page .matchup-card[b-ql2skpv39t] {
    /* Slightly taller cards for basketball to accommodate possession indicators */
    min-height: 64px;
}

.schedule-page .mobile-game-item .matchup-card[b-ql2skpv39t] {
    min-height: 54px;
}

/* Half-time styling for basketball */
.matchup-card.is-halftime[b-ql2skpv39t] {
    border: 2px solid var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}
/* _content/AllGameTimes/Components/Pages/NFL/Nfl.razor.rz.scp.css */
/* --- New Ad Layout Styles --- */
.page-layout-right-ad[b-rjkhlpyo1p] {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.content-wrapper[b-rjkhlpyo1p] {
    min-width: 0;
    max-width: 100%;
}

.sidebar[b-rjkhlpyo1p] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* --- Modified Base Page Style --- */
.schedule-page[b-rjkhlpyo1p] {
    --accent-primary: #005fcc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    background-color: var(--bg-secondary);
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.panel[b-rjkhlpyo1p] {
    background-color: var(--surface-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Header */
.page-header[b-rjkhlpyo1p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-brand[b-rjkhlpyo1p] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon[b-rjkhlpyo1p] {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #0d254c, #013369);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
}

.page-title[b-rjkhlpyo1p] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.page-subtitle[b-rjkhlpyo1p] {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.header-controls[b-rjkhlpyo1p] {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.week-nav[b-rjkhlpyo1p], .timezone-selector[b-rjkhlpyo1p] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timezone-label[b-rjkhlpyo1p] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-nav[b-rjkhlpyo1p] {
    background-color: var(--surface-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-nav:hover[b-rjkhlpyo1p] {
        background-color: var(--surface-tertiary);
        box-shadow: var(--shadow-small);
    }

.timezone-chips[b-rjkhlpyo1p] {
    display: flex;
    background-color: var(--surface-secondary);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--border-color);
}

.btn-chip[b-rjkhlpyo1p] {
    border: none;
    background-color: transparent;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

    .btn-chip.active[b-rjkhlpyo1p] {
        background-color: var(--accent-primary);
        color: white;
        box-shadow: var(--shadow-small);
    }

/* Filter Area */
.filter-area[b-rjkhlpyo1p] {
    padding: 1rem 1.5rem;
}

.filter-options-header[b-rjkhlpyo1p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

    .filter-options-header h3[b-rjkhlpyo1p] {
        font-size: 1.25rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.btn-clear-filter[b-rjkhlpyo1p], .btn-toggle-section[b-rjkhlpyo1p] {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
}

    .btn-clear-filter:hover[b-rjkhlpyo1p], .btn-toggle-section:hover[b-rjkhlpyo1p] {
        color: var(--accent-primary);
    }

.btn-toggle-section[b-rjkhlpyo1p] {
    font-size: 1.25rem;
}

.filter-panel-grid[b-rjkhlpyo1p] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.filter-column .filter-options-header[b-rjkhlpyo1p] {
    margin-bottom: 0.75rem;
}

.filter-grid[b-rjkhlpyo1p] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.5rem;
}

.filter-card[b-rjkhlpyo1p] {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .filter-card:hover[b-rjkhlpyo1p] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    .filter-card.active[b-rjkhlpyo1p] {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 2px var(--accent-primary);
    }

.filter-card-name[b-rjkhlpyo1p] {
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-card-check-icon[b-rjkhlpyo1p] {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease-in-out;
}

.filter-card.active .filter-card-check-icon[b-rjkhlpyo1p] {
    opacity: 1;
    transform: scale(1);
}

/* Main Content */
.main-content[b-rjkhlpyo1p] {
    flex-grow: 1;
    max-width: 100%;
    overflow-x: hidden;
}

.schedule-grid[b-rjkhlpyo1p] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-card[b-rjkhlpyo1p] {
    padding: 1rem 1.5rem;
}

.day-header[b-rjkhlpyo1p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.day-title[b-rjkhlpyo1p] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.day-controls[b-rjkhlpyo1p] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.btn-toggle-day[b-rjkhlpyo1p] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.schedule-viewport[b-rjkhlpyo1p] {
    overflow-x: auto;
    padding-top: 1rem;
    max-width: 100%;
}

.schedule-table-container[b-rjkhlpyo1p] {
    min-width: 1000px;
    --grid-scale: 1;
}

@media (max-width: 1400px) {
    .schedule-table-container[b-rjkhlpyo1p] {
        --grid-scale: 0.95;
    }
}

@media (max-width: 1280px) {
    .schedule-table-container[b-rjkhlpyo1p] {
        --grid-scale: 0.90;
    }
}

@media (max-width: 1150px) {
    .schedule-table-container[b-rjkhlpyo1p] {
        --grid-scale: 0.85;
    }
}

@media (max-width: 1040px) {
    .schedule-table-container[b-rjkhlpyo1p] {
        --grid-scale: 0.80;
    }

    .page-layout-right-ad[b-rjkhlpyo1p] {
        grid-template-columns: 1fr;
        padding: 0.75rem;
    }

    .sidebar[b-rjkhlpyo1p] {
        display: none;
    }
}

/* Prefer zoom; fallback to transform */
@supports (zoom: 1) {
    .schedule-table-container[b-rjkhlpyo1p] {
        zoom: var(--grid-scale);
        transform: none;
        width: auto;
    }
}

@supports not (zoom: 1) {
    .schedule-table-container[b-rjkhlpyo1p] {
        transform: scale(var(--grid-scale));
        transform-origin: top left;
        width: calc(100% / var(--grid-scale));
    }
}

.schedule-table[b-rjkhlpyo1p] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.station-header[b-rjkhlpyo1p], .time-header[b-rjkhlpyo1p] {
    text-align: left;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid var(--border-color);
}

.time-header[b-rjkhlpyo1p] {
    text-align: center;
}

.station-cell[b-rjkhlpyo1p] {
    padding: 0.5rem;
    font-weight: 600;
    vertical-align: top;
    width: 120px;
}

.game-cell[b-rjkhlpyo1p] {
    padding: 4px;
}

.empty-cell[b-rjkhlpyo1p] {
    background-color: var(--surface-secondary);
    border-radius: 8px;
}

/* Matchup Card */
.matchup-card[b-rjkhlpyo1p] {
    display: flex;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: var(--shadow-small);
    border: 1px solid var(--border-color);
}

    .matchup-card.is-completed[b-rjkhlpyo1p] {
        opacity: 0.6;
    }

.segment[b-rjkhlpyo1p] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.35rem 0.6rem;
    font-size: 1.05rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

    .segment.left[b-rjkhlpyo1p] {
        background-color: var(--away-color);
        color: var(--away-secondary);
        text-align: left;
    }

    .segment.right[b-rjkhlpyo1p] {
        background-color: var(--home-color);
        color: var(--home-secondary);
        align-items: flex-end;
        text-align: right;
    }

.team-stack[b-rjkhlpyo1p] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
}

.team-name[b-rjkhlpyo1p] {
    font-size: 1em;
    font-weight: 800;
    white-space: nowrap;
}

.dd-pill[b-rjkhlpyo1p] {
    display: inline-block;
    padding: 1px 6px;
    font-size: 0.55rem;
    font-weight: 700;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border-radius: 6px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
    line-height: .9;
}


.vs-badge[b-rjkhlpyo1p] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--surface-primary);
    color: var(--text-primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 2px solid var(--border-color);
    font-size: 0.9rem;
}

.live-indicator[b-rjkhlpyo1p] {
    position: absolute;
    top: 6px;
    right: 8px;
    background-color: #e53935;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-dot[b-rjkhlpyo1p] {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: pulse-b-rjkhlpyo1p 1.5s infinite;
}

@keyframes pulse-b-rjkhlpyo1p {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

.meta-row[b-rjkhlpyo1p] {
    position: absolute;
    bottom: 4px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.meta-item[b-rjkhlpyo1p] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-score-footer[b-rjkhlpyo1p] {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1.05;
    text-shadow: none;
    pointer-events: none;
    border: none;
}

    .live-score-footer .line[b-rjkhlpyo1p] {
        white-space: nowrap;
    }

.matchup-card:has(.live-score-footer) .vs-badge[b-rjkhlpyo1p] {
    display: none !important;
}

.schedule-grid .matchup-card[b-rjkhlpyo1p] {
    height: 42px;
}

    .schedule-grid .matchup-card .segment[b-rjkhlpyo1p] {
        font-size: 0.85rem;
    }

    .schedule-grid .matchup-card .vs-badge[b-rjkhlpyo1p] {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }

    .schedule-grid .matchup-card .meta-row[b-rjkhlpyo1p] {
        display: none;
    }

.schedule-grid .live-score-footer[b-rjkhlpyo1p] {
    bottom: 2px;
    font-size: 0.65rem;
}

/* Mobile View */
.mobile-schedule-list[b-rjkhlpyo1p] {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.mobile-day-header[b-rjkhlpyo1p] {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem;
    background-color: var(--surface-secondary);
    border-radius: 8px;
    text-align: center;
}

/* Tablet optimizations */
@media (max-width: 768px) {
    .page-layout-right-ad[b-rjkhlpyo1p] {
        padding: 0.5rem;
    }

    .page-header[b-rjkhlpyo1p] {
        padding: 0.75rem 1rem;
    }

    .page-title[b-rjkhlpyo1p] {
        font-size: 1.5rem;
    }

    .brand-icon[b-rjkhlpyo1p] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .header-controls[b-rjkhlpyo1p] {
        gap: 1rem;
    }

    .filter-panel-grid[b-rjkhlpyo1p] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-grid[b-rjkhlpyo1p] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Mobile optimizations */
@media (max-width: 992px) {
    .schedule-page > .page-header[b-rjkhlpyo1p] {
        display: none;
    }

    .dd-pill[b-rjkhlpyo1p] {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: .9;
    }

    .page-layout-right-ad[b-rjkhlpyo1p] {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .sidebar[b-rjkhlpyo1p] {
        display: none;
    }

    .schedule-grid[b-rjkhlpyo1p] {
        display: none;
    }

    .panel[b-rjkhlpyo1p] {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .page-header[b-rjkhlpyo1p],
    .filter-area[b-rjkhlpyo1p],
    .day-card[b-rjkhlpyo1p] {
        padding: 0.75rem 1rem;
    }

    /* === NEW MOBILE VIEW LAYOUT START === */
    .mobile-schedule-list.bytime[b-rjkhlpyo1p] {
        display: grid;
        gap: 0.75rem;
    }

    .mobile-time-section.panel[b-rjkhlpyo1p] {
        border: 1px solid var(--border-color);
        border-radius: 10px;
        background: var(--surface-primary);
        box-shadow: var(--shadow-medium);
        overflow: hidden;
        box-sizing: border-box;
    }

    .mobile-time-header[b-rjkhlpyo1p] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        background: var(--surface-primary);
        font-weight: 600;
        width: 100%;
        text-align: left;
        cursor: pointer;
        border: none;
        outline: none;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-time-body[b-rjkhlpyo1p] {
        display: block;
    }

    .mobile-time-section.collapsed .mobile-time-body[b-rjkhlpyo1p] {
        display: none;
    }

    .mobile-time-section.collapsed .mobile-time-header[b-rjkhlpyo1p] {
        border-bottom: none;
    }

    /* Container for a network's section */
    .mobile-network-row[b-rjkhlpyo1p] {
        border-bottom: 1px solid var(--border-color);
    }

        .mobile-network-row:last-child[b-rjkhlpyo1p] {
            border-bottom: none;
        }

    /* Network name styled as a sub-header */
    .network-label[b-rjkhlpyo1p] {
        font-weight: 700;
        color: var(--text-primary);
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
        background-color: var(--surface-secondary);
    }

    /* Container for the game cards under the network sub-header */
    .network-games[b-rjkhlpyo1p] {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .mobile-game-item[b-rjkhlpyo1p] {
        background-color: var(--surface-primary);
        border-radius: 8px;
        padding: 0;
        box-shadow: none;
    }

        .mobile-game-item .matchup-card[b-rjkhlpyo1p] {
            height: 54px;
            width: 100%;
            max-width: 100%;
        }

            .mobile-game-item .matchup-card .segment[b-rjkhlpyo1p] {
                font-size: 0.86rem;
            }

            .mobile-game-item .matchup-card .vs-badge[b-rjkhlpyo1p] {
                width: 22px;
                height: 22px;
                font-size: 0.63rem;
            }

            .mobile-game-item .matchup-card .dd-pill[b-rjkhlpyo1p] {
                font-size: 0.50rem;
            }
    /* === NEW MOBILE VIEW LAYOUT END === */
}


/* Small mobile devices */
@media (max-width: 480px) {
    .page-layout-right-ad[b-rjkhlpyo1p] {
        padding: 0.25rem;
    }

    .filter-area[b-rjkhlpyo1p],
    .day-card[b-rjkhlpyo1p] {
        padding: 0.5rem 0.75rem;
    }

    .controls-bar[b-rjkhlpyo1p] {
        padding: 0.4rem 0.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    .week-nav[b-rjkhlpyo1p], .timezone-chips[b-rjkhlpyo1p] {
        width: 100%;
        justify-content: center;
    }

    .filter-grid[b-rjkhlpyo1p] {
        gap: 0.3rem;
    }

    .filter-card[b-rjkhlpyo1p] {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    .mobile-game-item .matchup-card .dd-pill[b-rjkhlpyo1p] {
        font-size: 0.50rem;
    }
}

/* No Games State */
.no-games-state[b-rjkhlpyo1p] {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--surface-primary);
    border-radius: 12px;
}

.no-games-icon[b-rjkhlpyo1p] {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.no-games-title[b-rjkhlpyo1p] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.no-games-message[b-rjkhlpyo1p] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-reset-filters[b-rjkhlpyo1p] {
    background-color: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-anchor[b-rjkhlpyo1p] {
    position: relative;
    top: -80px;
    display: block;
    height: 0;
    overflow: hidden;
}
/* _content/AllGameTimes/Components/Pages/Schedules/CFB/CfbSchedules.razor.rz.scp.css */
.cfb-schedules-page[b-tfudvrio00] {
    max-width: 1200px; /* was 1100px */
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--cmp-surface, #fff);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1rem 2rem 2rem 2rem;
}

.page-layout[b-tfudvrio00] {
    display: grid;
    grid-template-columns: 200px 1fr 200px; /* left - main - right */
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar[b-tfudvrio00] {
    display: flex;
    justify-content: center;
    align-items: start;
}

.content[b-tfudvrio00] {
    min-width: 0; /* so the table shrinks properly */
}


.sidebar-right.debug-panel[b-tfudvrio00] {
    background: rgba(0, 128, 255, 0.1); /* light blue tint */
    border: 2px dashed #0080ff;
    width: 200px;
    min-height: 400px; /* adjust for testing */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0080ff;
}
.page-title[b-tfudvrio00] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.schedule-controls[b-tfudvrio00] {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}
.controls-actions[b-tfudvrio00] {
    display: flex;
    gap: 0.8rem;
}

.btn[b-tfudvrio00] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ical[b-tfudvrio00] {
    background: #0066cc;
    color: #fff;
    border: none;
}

    .btn-ical:hover[b-tfudvrio00] {
        background: #0055aa;
    }

.share-link[b-tfudvrio00] {
    font-size: .9rem;
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
}
.share-link:hover[b-tfudvrio00] { text-decoration: underline; }
.team-select[b-tfudvrio00] {
    min-width: 220px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}
.schedule-table-container[b-tfudvrio00] {
    overflow-x: auto;
}
.schedule-table[b-tfudvrio00] {
    font-size: 0.85rem;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
}
.schedule-table th[b-tfudvrio00],
.schedule-table td[b-tfudvrio00] {
    padding: 0.3rem 0.5rem;
    font-size: 0.70rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}
.schedule-table th[b-tfudvrio00] {
    background: #f7f7f7;
    font-weight: 700;
}
.schedule-table tr:hover[b-tfudvrio00] {
    background: #f2f8ff;
}
.empty-state[b-tfudvrio00] {
    text-align: center;
    color: #888;
    margin: 2rem 0;
    font-size: 1.2rem;
}

/* Widget Section Styles */
.widget-section[b-tfudvrio00] {
    background: var(--surface-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.widget-header[b-tfudvrio00] {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-title[b-tfudvrio00] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.widget-subtitle[b-tfudvrio00] {
    color: var(--text-secondary);
    font-size: 1rem;
}

.widget-controls[b-tfudvrio00] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.widget-control-group h3[b-tfudvrio00] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.control-row[b-tfudvrio00] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.control-row label[b-tfudvrio00] {
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.widget-select[b-tfudvrio00], .color-input[b-tfudvrio00] {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-primary);
    color: var(--text-primary);
    min-width: 80px;
}

.color-input[b-tfudvrio00] {
    width: 50px;
    height: 35px;
    padding: 0;
    cursor: pointer;
}

.custom-colors[b-tfudvrio00] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-grid[b-tfudvrio00] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.checkbox-label[b-tfudvrio00] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-tfudvrio00] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-primary);
}

/* Widget Preview */
.widget-preview[b-tfudvrio00] {
    margin-bottom: 2rem;
}

.widget-preview h3[b-tfudvrio00] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.widget-container[b-tfudvrio00] {
    border-radius: 8px;
    padding: .5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.widget-games[b-tfudvrio00] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget-game-card[b-tfudvrio00] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border, #333);
    border-radius: 6px;
    padding: 0.75rem;
    transition: transform 0.2s ease;
}

.widget-game-card:hover[b-tfudvrio00] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.widget-game-header[b-tfudvrio00] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.widget-team-logos[b-tfudvrio00] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-logo[b-tfudvrio00] {
    background: var(--accent, #ff7f00);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.vs-divider[b-tfudvrio00] {
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 600;
}

.widget-team-names[b-tfudvrio00] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.widget-team-names .vs[b-tfudvrio00] {
    font-size: 0.7rem;
    opacity: 0.7;
    align-self: flex-start;
}

.away-team[b-tfudvrio00], .home-team[b-tfudvrio00] {
    font-weight: 600;
    font-size: 0.85rem;
}

.widget-score[b-tfudvrio00] {
    font-weight: 700;
    color: var(--accent, #ff7f00);
    font-size: 0.9rem;
}

.live-indicator[b-tfudvrio00] {
    background: #ff4444;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.7rem;
    animation: pulse-b-tfudvrio00 2s infinite;
}

@keyframes pulse-b-tfudvrio00 {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.widget-game-info[b-tfudvrio00] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-datetime[b-tfudvrio00] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent, #ff7f00);
}

.widget-week[b-tfudvrio00], .widget-network[b-tfudvrio00], .widget-venue[b-tfudvrio00] {
    font-size: 0.7rem;
    opacity: 0.8;
    line-height: 1.2;
}

.widget-footer[b-tfudvrio00] {
    text-align: center;
    padding-top: 0.01rem;
    padding-bottom: 0.01rem;
    border-top: 1px solid var(--border, #333);
}

.powered-by[b-tfudvrio00] {
    font-size: 1.75rem;
    opacity: 1;
    font-weight: 600;
}

.brand-all[b-tfudvrio00], .brand-times[b-tfudvrio00] {
    color: inherit;
}

.brand-game[b-tfudvrio00] {
    color: #ff7f00;
}

/* Embed Code Section */
.widget-embed h3[b-tfudvrio00] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.embed-code-container[b-tfudvrio00] {
    position: relative;
    margin-bottom: 1rem;
}

.embed-code[b-tfudvrio00] {
    width: 100%;
    height: 120px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    resize: vertical;
    white-space: pre-wrap;
}

.btn-copy-embed[b-tfudvrio00] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-copy-embed:hover[b-tfudvrio00] {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.embed-instructions[b-tfudvrio00] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.4;
}
/* --- Responsive Breakpoints --- */

/* Tablet adjustments */
@media (max-width: 992px) {
    .cfb-schedules-page[b-tfudvrio00] {
        padding: 1rem; /* reduce heavy padding */
    }
    .page-layout[b-tfudvrio00] {
        grid-template-columns: 1fr; /* single column */
    }

    .sidebar[b-tfudvrio00] {
        display: none; /* hide ads on mobile */
    }

    .widget-input[b-tfudvrio00] {
        max-width: 75px;
        text-align: right;
    }

    .schedule-table[b-tfudvrio00] {
        font-size: 0.8rem;
    }

        .schedule-table th[b-tfudvrio00],
        .schedule-table td[b-tfudvrio00] {
            font-size: 0.65rem;
        }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* hide less important columns */
    .schedule-table th.col-venue[b-tfudvrio00],
    .schedule-table td.col-venue[b-tfudvrio00],
    .schedule-table th:nth-child(2)[b-tfudvrio00],
    .schedule-table td:nth-child(2)[b-tfudvrio00],
    .schedule-table th:nth-child(7)[b-tfudvrio00],
    .schedule-table td:nth-child(7)[b-tfudvrio00] {
        display: none;
    }

    .schedule-controls[b-tfudvrio00] {
        flex-direction: column;
        align-items: stretch;
    }

    .page-title[b-tfudvrio00] {
        font-size: 1.5rem;
    }
}
/* _content/AllGameTimes/Components/Pages/Schedules/MLB/MlbSchedules.razor.rz.scp.css */
.mlb-schedules-page[b-2kt2caxlci] {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--cmp-surface, #fff);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1rem 2rem 2rem 2rem;
}

.page-layout[b-2kt2caxlci] {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar[b-2kt2caxlci] {
    display: flex;
    justify-content: center;
    align-items: start;
}

.content[b-2kt2caxlci] {
    min-width: 0;
}

.sidebar-right.debug-panel[b-2kt2caxlci] {
    background: rgba(0, 128, 255, 0.1);
    border: 2px dashed #0080ff;
    width: 200px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0080ff;
}

.page-title[b-2kt2caxlci] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.schedule-controls[b-2kt2caxlci] {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.controls-actions[b-2kt2caxlci] {
    display: flex;
    gap: 0.8rem;
}

.btn[b-2kt2caxlci] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ical[b-2kt2caxlci] {
    background: #0066cc;
    color: #fff;
    border: none;
}

.btn-ical:hover[b-2kt2caxlci] {
    background: #0055aa;
}

.share-link[b-2kt2caxlci] {
    font-size: .9rem;
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
}

.share-link:hover[b-2kt2caxlci] { text-decoration: underline; }

.team-select[b-2kt2caxlci] {
    min-width: 220px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}

.schedule-table-container[b-2kt2caxlci] {
    overflow-x: auto;
}

.schedule-table[b-2kt2caxlci] {
    font-size: 0.85rem;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
}

.schedule-table th[b-2kt2caxlci],
.schedule-table td[b-2kt2caxlci] {
    padding: 0.3rem 0.5rem;
    font-size: 0.70rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.schedule-table th[b-2kt2caxlci] {
    background: #f7f7f7;
    font-weight: 700;
}

.schedule-table tr:hover[b-2kt2caxlci] {
    background: #f2f8ff;
}

.empty-state[b-2kt2caxlci] {
    text-align: center;
    color: #888;
    margin: 2rem 0;
    font-size: 1.2rem;
}

/* Widget Section Styles */
.widget-section[b-2kt2caxlci] {
    background: var(--surface-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.widget-header[b-2kt2caxlci] {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-title[b-2kt2caxlci] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.widget-subtitle[b-2kt2caxlci] {
    color: var(--text-secondary);
    font-size: 1rem;
}

.widget-controls[b-2kt2caxlci] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.widget-control-group h3[b-2kt2caxlci] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.control-row[b-2kt2caxlci] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.control-row label[b-2kt2caxlci] {
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.widget-select[b-2kt2caxlci], .color-input[b-2kt2caxlci] {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-primary);
    color: var(--text-primary);
    min-width: 80px;
}

.color-input[b-2kt2caxlci] {
    width: 50px;
    height: 35px;
    padding: 0;
    cursor: pointer;
}

.custom-colors[b-2kt2caxlci] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-grid[b-2kt2caxlci] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.checkbox-label[b-2kt2caxlci] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-2kt2caxlci] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-primary);
}

/* Widget Preview */
.widget-preview[b-2kt2caxlci] {
    margin-bottom: 2rem;
}

.widget-preview h3[b-2kt2caxlci] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.widget-container[b-2kt2caxlci] {
    border-radius: 8px;
    padding: .5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.widget-games[b-2kt2caxlci] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget-game-card[b-2kt2caxlci] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border, #333);
    border-radius: 6px;
    padding: 0.75rem;
    transition: transform 0.2s ease;
}

.widget-game-card:hover[b-2kt2caxlci] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.widget-game-header[b-2kt2caxlci] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.widget-team-logos[b-2kt2caxlci] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-logo[b-2kt2caxlci] {
    background: var(--accent, #ff7f00);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.vs-divider[b-2kt2caxlci] {
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 600;
}

.widget-team-names[b-2kt2caxlci] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.widget-team-names .vs[b-2kt2caxlci] {
    font-size: 0.7rem;
    opacity: 0.7;
    align-self: flex-start;
}

.away-team[b-2kt2caxlci], .home-team[b-2kt2caxlci] {
    font-weight: 600;
    font-size: 0.85rem;
}

.widget-score[b-2kt2caxlci] {
    font-weight: 700;
    color: var(--accent, #ff7f00);
    font-size: 0.9rem;
}

.live-indicator[b-2kt2caxlci] {
    background: #ff4444;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.7rem;
    animation: pulse-b-2kt2caxlci 2s infinite;
}

@keyframes pulse-b-2kt2caxlci {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.widget-game-info[b-2kt2caxlci] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-datetime[b-2kt2caxlci] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent, #ff7f00);
}

.widget-week[b-2kt2caxlci], .widget-network[b-2kt2caxlci], .widget-venue[b-2kt2caxlci] {
    font-size: 0.7rem;
    opacity: 0.8;
    line-height: 1.2;
}

.widget-footer[b-2kt2caxlci] {
    text-align: center;
    padding-top: 0.01rem;
    padding-bottom: 0.01rem;
    border-top: 1px solid var(--border, #333);
}

.powered-by[b-2kt2caxlci] {
    font-size: 1.75rem;
    opacity: 1;
    font-weight: 600;
}

.brand-all[b-2kt2caxlci], .brand-times[b-2kt2caxlci] {
    color: inherit;
}

.brand-game[b-2kt2caxlci] {
    color: #ff7f00;
}

/* Embed Code Section */
.widget-embed h3[b-2kt2caxlci] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.embed-code-container[b-2kt2caxlci] {
    position: relative;
    margin-bottom: 1rem;
}

.embed-code[b-2kt2caxlci] {
    width: 100%;
    height: 120px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    resize: vertical;
    white-space: pre-wrap;
}

.btn-copy-embed[b-2kt2caxlci] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-copy-embed:hover[b-2kt2caxlci] {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.embed-instructions[b-2kt2caxlci] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* --- Responsive Breakpoints --- */

/* Tablet adjustments */
@media (max-width: 992px) {
    .mlb-schedules-page[b-2kt2caxlci] {
        padding: 1rem;
    }
    .page-layout[b-2kt2caxlci] {
        grid-template-columns: 1fr;
    }
    .sidebar[b-2kt2caxlci] {
        display: none;
    }
    .widget-input[b-2kt2caxlci] {
        max-width: 75px;
        text-align: right;
    }
    .schedule-table[b-2kt2caxlci] {
        font-size: 0.8rem;
    }
    .schedule-table th[b-2kt2caxlci],
    .schedule-table td[b-2kt2caxlci] {
        font-size: 0.65rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .schedule-table th.col-venue[b-2kt2caxlci],
    .schedule-table td.col-venue[b-2kt2caxlci] {
        display: none;
    }
    .schedule-controls[b-2kt2caxlci] {
        flex-direction: column;
        align-items: stretch;
    }
    .page-title[b-2kt2caxlci] {
        font-size: 1.5rem;
    }
}
/* _content/AllGameTimes/Components/Pages/Schedules/NCAAB/NcaabSchedules.razor.rz.scp.css */
.ncaab-schedules-page[b-5gptmh1xyl] {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--cmp-surface, #fff);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1rem 2rem 2rem 2rem;
}

.page-layout[b-5gptmh1xyl] {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar[b-5gptmh1xyl] {
    display: flex;
    justify-content: center;
    align-items: start;
}

.content[b-5gptmh1xyl] {
    min-width: 0;
}

.sidebar-right.debug-panel[b-5gptmh1xyl] {
    background: rgba(0, 128, 255, 0.1);
    border: 2px dashed #0080ff;
    width: 200px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0080ff;
}

.page-title[b-5gptmh1xyl] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.schedule-controls[b-5gptmh1xyl] {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.controls-actions[b-5gptmh1xyl] {
    display: flex;
    gap: 0.8rem;
}

.btn[b-5gptmh1xyl] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ical[b-5gptmh1xyl] {
    background: #0066cc;
    color: #fff;
    border: none;
}

.btn-ical:hover[b-5gptmh1xyl] {
    background: #0055aa;
}

.share-link[b-5gptmh1xyl] {
    font-size: .9rem;
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
}

.share-link:hover[b-5gptmh1xyl] { text-decoration: underline; }

.team-select[b-5gptmh1xyl] {
    min-width: 220px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}

.schedule-table-container[b-5gptmh1xyl] {
    overflow-x: auto;
}

.schedule-table[b-5gptmh1xyl] {
    font-size: 0.85rem;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
}

.schedule-table th[b-5gptmh1xyl],
.schedule-table td[b-5gptmh1xyl] {
    padding: 0.3rem 0.5rem;
    font-size: 0.70rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.schedule-table th[b-5gptmh1xyl] {
    background: #f7f7f7;
    font-weight: 700;
}

.schedule-table tr:hover[b-5gptmh1xyl] {
    background: #f2f8ff;
}

.empty-state[b-5gptmh1xyl] {
    text-align: center;
    color: #888;
    margin: 2rem 0;
    font-size: 1.2rem;
}

/* Widget Section Styles */
.widget-section[b-5gptmh1xyl] {
    background: var(--surface-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.widget-header[b-5gptmh1xyl] {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-title[b-5gptmh1xyl] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.widget-subtitle[b-5gptmh1xyl] {
    color: var(--text-secondary);
    font-size: 1rem;
}

.widget-controls[b-5gptmh1xyl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.widget-control-group h3[b-5gptmh1xyl] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.control-row[b-5gptmh1xyl] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.control-row label[b-5gptmh1xyl] {
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.widget-select[b-5gptmh1xyl], .color-input[b-5gptmh1xyl] {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-primary);
    color: var(--text-primary);
    min-width: 80px;
}

.color-input[b-5gptmh1xyl] {
    width: 50px;
    height: 35px;
    padding: 0;
    cursor: pointer;
}

.custom-colors[b-5gptmh1xyl] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-grid[b-5gptmh1xyl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.checkbox-label[b-5gptmh1xyl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-5gptmh1xyl] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-primary);
}

/* Widget Preview */
.widget-preview[b-5gptmh1xyl] {
    margin-bottom: 2rem;
}

.widget-preview h3[b-5gptmh1xyl] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.widget-container[b-5gptmh1xyl] {
    border-radius: 8px;
    padding: .5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.widget-games[b-5gptmh1xyl] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget-game-card[b-5gptmh1xyl] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border, #333);
    border-radius: 6px;
    padding: 0.75rem;
    transition: transform 0.2s ease;
}

.widget-game-card:hover[b-5gptmh1xyl] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.widget-game-header[b-5gptmh1xyl] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.widget-team-logos[b-5gptmh1xyl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-logo[b-5gptmh1xyl] {
    background: var(--accent, #ff7f00);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.vs-divider[b-5gptmh1xyl] {
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 600;
}

.widget-team-names[b-5gptmh1xyl] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.widget-team-names .vs[b-5gptmh1xyl] {
    font-size: 0.7rem;
    opacity: 0.7;
    align-self: flex-start;
}

.away-team[b-5gptmh1xyl], .home-team[b-5gptmh1xyl] {
    font-weight: 600;
    font-size: 0.85rem;
}

.widget-score[b-5gptmh1xyl] {
    font-weight: 700;
    color: var(--accent, #ff7f00);
    font-size: 0.9rem;
}

.live-indicator[b-5gptmh1xyl] {
    background: #ff4444;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.7rem;
    animation: pulse-b-5gptmh1xyl 2s infinite;
}

@keyframes pulse-b-5gptmh1xyl {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.widget-game-info[b-5gptmh1xyl] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-datetime[b-5gptmh1xyl] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent, #ff7f00);
}

.widget-week[b-5gptmh1xyl], .widget-network[b-5gptmh1xyl], .widget-venue[b-5gptmh1xyl] {
    font-size: 0.7rem;
    opacity: 0.8;
    line-height: 1.2;
}

.widget-footer[b-5gptmh1xyl] {
    text-align: center;
    padding-top: 0.01rem;
    padding-bottom: 0.01rem;
    border-top: 1px solid var(--border, #333);
}

.powered-by[b-5gptmh1xyl] {
    font-size: 1.75rem;
    opacity: 1;
    font-weight: 600;
}

.brand-all[b-5gptmh1xyl], .brand-times[b-5gptmh1xyl] {
    color: inherit;
}

.brand-game[b-5gptmh1xyl] {
    color: #ff7f00;
}

/* Embed Code Section */
.widget-embed h3[b-5gptmh1xyl] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.embed-code-container[b-5gptmh1xyl] {
    position: relative;
    margin-bottom: 1rem;
}

.embed-code[b-5gptmh1xyl] {
    width: 100%;
    height: 120px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    resize: vertical;
    white-space: pre-wrap;
}

.btn-copy-embed[b-5gptmh1xyl] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.btn-copy-embed:hover[b-5gptmh1xyl] {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.embed-instructions[b-5gptmh1xyl] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* --- Responsive Breakpoints --- */

/* Tablet adjustments */
@media (max-width: 992px) {
    .ncaab-schedules-page[b-5gptmh1xyl] {
        padding: 1rem;
    }
    .page-layout[b-5gptmh1xyl] {
        grid-template-columns: 1fr;
    }
    .sidebar[b-5gptmh1xyl] {
        display: none;
    }
    .widget-input[b-5gptmh1xyl] {
        max-width: 75px;
        text-align: right;
    }
    .schedule-table[b-5gptmh1xyl] {
        font-size: 0.8rem;
    }
    .schedule-table th[b-5gptmh1xyl],
    .schedule-table td[b-5gptmh1xyl] {
        font-size: 0.65rem;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .schedule-table th.col-venue[b-5gptmh1xyl],
    .schedule-table td.col-venue[b-5gptmh1xyl],
    .schedule-table th:nth-child(2)[b-5gptmh1xyl],
    .schedule-table td:nth-child(2)[b-5gptmh1xyl],
    .schedule-table th:nth-child(7)[b-5gptmh1xyl],
    .schedule-table td:nth-child(7)[b-5gptmh1xyl] {
        display: none;
    }
    .schedule-controls[b-5gptmh1xyl] {
        flex-direction: column;
        align-items: stretch;
    }
    .page-title[b-5gptmh1xyl] {
        font-size: 1.5rem;
    }
}
/* _content/AllGameTimes/Components/Pages/Schedules/NFL/NflSchedules.razor.rz.scp.css */
.nfl-schedules-page[b-st2x97lqjt] {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: var(--cmp-surface, #fff);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1rem 2rem 2rem 2rem;
}

.page-layout[b-st2x97lqjt] {
    display: grid;
    grid-template-columns: 200px 1fr 200px; /* left - main - right */
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar[b-st2x97lqjt] {
    display: flex;
    justify-content: center;
    align-items: start;
}

.content[b-st2x97lqjt] {
    min-width: 0; /* so the table shrinks properly */
}


.sidebar-right.debug-panel[b-st2x97lqjt] {
    background: rgba(0, 128, 255, 0.1); /* light blue tint */
    border: 2px dashed #0080ff;
    width: 200px;
    min-height: 400px; /* adjust for testing */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0080ff;
}

.page-title[b-st2x97lqjt] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.schedule-controls[b-st2x97lqjt] {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.controls-actions[b-st2x97lqjt] {
    display: flex;
    gap: 0.8rem;
}

.btn[b-st2x97lqjt] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ical[b-st2x97lqjt] {
    background: #0066cc;
    color: #fff;
    border: none;
}

    .btn-ical:hover[b-st2x97lqjt] {
        background: #0055aa;
    }

.share-link[b-st2x97lqjt] {
    font-size: .9rem;
    color: #2563eb;
    text-decoration: none;
    word-break: break-all;
}

    .share-link:hover[b-st2x97lqjt] {
        text-decoration: underline;
    }

.team-select[b-st2x97lqjt] {
    min-width: 220px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}

.schedule-table-container[b-st2x97lqjt] {
    overflow-x: auto;
}

.schedule-table[b-st2x97lqjt] {
    font-size: 0.85rem;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
}

    .schedule-table th[b-st2x97lqjt],
    .schedule-table td[b-st2x97lqjt] {
        padding: 0.3rem 0.5rem;
        font-size: 0.70rem;
        border-bottom: 1px solid #e0e0e0;
        text-align: left;
    }

    .schedule-table th[b-st2x97lqjt] {
        background: #f7f7f7;
        font-weight: 700;
    }

    .schedule-table tr:hover[b-st2x97lqjt] {
        background: #f2f8ff;
    }

.empty-state[b-st2x97lqjt] {
    text-align: center;
    color: #888;
    margin: 2rem 0;
    font-size: 1.2rem;
}

/* Widget Section Styles */
.widget-section[b-st2x97lqjt] {
    background: var(--surface-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.widget-header[b-st2x97lqjt] {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-title[b-st2x97lqjt] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.widget-subtitle[b-st2x97lqjt] {
    color: var(--text-secondary);
    font-size: 1rem;
}

.widget-controls[b-st2x97lqjt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.widget-control-group h3[b-st2x97lqjt] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.control-row[b-st2x97lqjt] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

    .control-row label[b-st2x97lqjt] {
        font-weight: 500;
        color: var(--text-primary);
        white-space: nowrap;
    }

.widget-select[b-st2x97lqjt], .color-input[b-st2x97lqjt] {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-primary);
    color: var(--text-primary);
    min-width: 80px;
}

.color-input[b-st2x97lqjt] {
    width: 50px;
    height: 35px;
    padding: 0;
    cursor: pointer;
}

.custom-colors[b-st2x97lqjt] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-grid[b-st2x97lqjt] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.checkbox-label[b-st2x97lqjt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

    .checkbox-label input[type="checkbox"][b-st2x97lqjt] {
        width: 16px;
        height: 16px;
        accent-color: var(--accent-primary);
    }

/* Widget Preview */
.widget-preview[b-st2x97lqjt] {
    margin-bottom: 2rem;
}

    .widget-preview h3[b-st2x97lqjt] {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-primary);
        margin-bottom: 1rem;
    }

.widget-container[b-st2x97lqjt] {
    border-radius: 8px;
    padding: .5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.widget-games[b-st2x97lqjt] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget-game-card[b-st2x97lqjt] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border, #333);
    border-radius: 6px;
    padding: 0.75rem;
    transition: transform 0.2s ease;
}

    .widget-game-card:hover[b-st2x97lqjt] {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

.widget-game-header[b-st2x97lqjt] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.widget-team-logos[b-st2x97lqjt] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-logo[b-st2x97lqjt] {
    background: var(--accent, #ff7f00);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

.vs-divider[b-st2x97lqjt] {
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 600;
}

.widget-team-names[b-st2x97lqjt] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

    .widget-team-names .vs[b-st2x97lqjt] {
        font-size: 0.7rem;
        opacity: 0.7;
        align-self: flex-start;
    }

.away-team[b-st2x97lqjt], .home-team[b-st2x97lqjt] {
    font-weight: 600;
    font-size: 0.85rem;
}

.widget-score[b-st2x97lqjt] {
    font-weight: 700;
    color: var(--accent, #ff7f00);
    font-size: 0.9rem;
}

.live-indicator[b-st2x97lqjt] {
    background: #ff4444;
    color: white;
    padding: 0.125rem 0.375rem;
    border-radius: 3px;
    font-size: 0.7rem;
    animation: pulse-b-st2x97lqjt 2s infinite;
}

@keyframes pulse-b-st2x97lqjt {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.widget-game-info[b-st2x97lqjt] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-datetime[b-st2x97lqjt] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent, #ff7f00);
}

.widget-week[b-st2x97lqjt], .widget-network[b-st2x97lqjt], .widget-venue[b-st2x97lqjt] {
    font-size: 0.7rem;
    opacity: 0.8;
    line-height: 1.2;
}

.widget-footer[b-st2x97lqjt] {
    text-align: center;
    padding-top: 0.01rem;
    padding-bottom: 0.01rem;
    border-top: 1px solid var(--border, #333);
}

.powered-by[b-st2x97lqjt] {
    font-size: 1.75rem;
    opacity: 1;
    font-weight: 600;
}

.brand-all[b-st2x97lqjt], .brand-times[b-st2x97lqjt] {
    color: inherit;
}

.brand-game[b-st2x97lqjt] {
    color: #ff7f00;
}

/* Embed Code Section */
.widget-embed h3[b-st2x97lqjt] {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.embed-code-container[b-st2x97lqjt] {
    position: relative;
    margin-bottom: 1rem;
}

.embed-code[b-st2x97lqjt] {
    width: 100%;
    height: 120px;
    padding: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    resize: vertical;
    white-space: pre-wrap;
}

.btn-copy-embed[b-st2x97lqjt] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

    .btn-copy-embed:hover[b-st2x97lqjt] {
        background: var(--accent-hover);
        transform: translateY(-1px);
    }

.embed-instructions[b-st2x97lqjt] {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-size: 0.9rem;
    line-height: 1.4;
}
/* --- Responsive Breakpoints --- */

/* Tablet adjustments */
@media (max-width: 992px) {
    .nfl-schedules-page[b-st2x97lqjt] {
        padding: 1rem; /* reduce heavy padding */
    }
    .page-layout[b-st2x97lqjt] {
        grid-template-columns: 1fr; /* single column */
    }

    .sidebar[b-st2x97lqjt] {
        display: none; /* hide ads on mobile */
    }

    .widget-input[b-st2x97lqjt] {
        max-width: 75px;
        text-align: right;
    }

    .schedule-table[b-st2x97lqjt] {
        font-size: 0.8rem;
    }

        .schedule-table th[b-st2x97lqjt],
        .schedule-table td[b-st2x97lqjt] {
            font-size: 0.65rem;
        }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    /* hide less important columns */
    .schedule-table th.col-venue[b-st2x97lqjt],
    .schedule-table td.col-venue[b-st2x97lqjt],
    .schedule-table th:nth-child(2)[b-st2x97lqjt],
    .schedule-table td:nth-child(2)[b-st2x97lqjt],
    .schedule-table th:nth-child(7)[b-st2x97lqjt],
    .schedule-table td:nth-child(7)[b-st2x97lqjt] {
        display: none;
    }

    .schedule-controls[b-st2x97lqjt] {
        flex-direction: column;
        align-items: stretch;
    }

    .page-title[b-st2x97lqjt] {
        font-size: 1.5rem;
    }
}
/* _content/AllGameTimes/Components/Pages/Schedules/Soccer/SoccerSchedules.razor.rz.scp.css */
.soccer-schedules-page[b-28piss26db] {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1rem 2rem 2rem 2rem;
    background: var(--cmp-surface, #fff);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.page-layout[b-28piss26db] {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sidebar[b-28piss26db] {
    display: flex;
    justify-content: center;
    align-items: start;
}

.content[b-28piss26db] {
    min-width: 0;
}

.page-title[b-28piss26db] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.schedule-controls[b-28piss26db] {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.controls-actions[b-28piss26db] {
    display: flex;
    gap: 0.8rem;
}

.btn[b-28piss26db] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ical[b-28piss26db] {
    background: #0066cc;
    color: #fff;
    border: none;
}

.btn-ical:hover[b-28piss26db] {
    background: #0055aa;
}

.team-select[b-28piss26db] {
    min-width: 220px;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    border: 1px solid #bbb;
    font-size: 1rem;
}

.schedule-table-container[b-28piss26db] {
    overflow-x: auto;
}

.schedule-table[b-28piss26db] {
    font-size: 0.85rem;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    background: #fff;
}

.schedule-table th[b-28piss26db],
.schedule-table td[b-28piss26db] {
    padding: 0.3rem 0.5rem;
    font-size: 0.70rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
    white-space: nowrap;
}

.schedule-table th[b-28piss26db] {
    background: #f7f7f7;
    font-weight: 700;
}

.schedule-table tr:hover[b-28piss26db] {
    background: #f2f8ff;
}

.score[b-28piss26db] {
    font-weight: 700;
}

.score-tbd[b-28piss26db] {
    color: #999;
}

.empty-state[b-28piss26db] {
    text-align: center;
    color: #888;
    margin: 2rem 0;
    font-size: 1.2rem;
}

/* Widget Section Styles */
.widget-section[b-28piss26db] {
    background: var(--surface-primary);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-medium);
}

.widget-header[b-28piss26db] {
    text-align: center;
    margin-bottom: 2rem;
}

.widget-title[b-28piss26db] {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.widget-subtitle[b-28piss26db] {
    color: var(--text-secondary);
    font-size: 1rem;
}

.widget-controls[b-28piss26db] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.widget-control-group h3[b-28piss26db] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
}

.control-row[b-28piss26db] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.control-row label[b-28piss26db] {
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.widget-select[b-28piss26db],
.color-input[b-28piss26db],
.widget-input[b-28piss26db] {
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-primary);
    color: var(--text-primary);
    min-width: 80px;
}

.widget-input[b-28piss26db] {
    max-width: 90px;
    text-align: right;
}

.color-input[b-28piss26db] {
    width: 50px;
    height: 35px;
    padding: 0;
    cursor: pointer;
}

.custom-colors[b-28piss26db] {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.checkbox-grid[b-28piss26db] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.checkbox-label[b-28piss26db] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"][b-28piss26db] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-primary);
}

/* Widget Preview */
.widget-container[b-28piss26db] {
    border-radius: 8px;
    padding: .5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.widget-games[b-28piss26db] {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.widget-game-card[b-28piss26db] {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border, #333);
    border-radius: 6px;
    padding: 0.75rem;
    transition: transform 0.2s ease;
}

.widget-game-card:hover[b-28piss26db] {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.widget-game-header[b-28piss26db] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.widget-team-names[b-28piss26db] {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.away-team[b-28piss26db], .home-team[b-28piss26db] {
    font-weight: 600;
    font-size: 0.85rem;
}

.widget-score[b-28piss26db] {
    font-weight: 700;
    color: var(--accent, #ff7f00);
    font-size: 0.9rem;
}

.widget-game-info[b-28piss26db] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.widget-datetime[b-28piss26db] {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent, #ff7f00);
}

.widget-network[b-28piss26db], .widget-venue[b-28piss26db] {
    font-size: 0.7rem;
    opacity: 0.85;
    line-height: 1.2;
}

.widget-footer[b-28piss26db] {
    text-align: center;
    padding-top: 0.01rem;
    padding-bottom: 0.01rem;
    border-top: 1px solid var(--border, #333);
}

.powered-by[b-28piss26db] {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 600;
}

.brand-all[b-28piss26db], .brand-times[b-28piss26db] {
    color: inherit;
}

.brand-game[b-28piss26db] {
    color: #ff7f00;
}

/* --- Responsive Breakpoints --- */

/* Tablet */
@media (max-width: 992px) {
    .soccer-schedules-page[b-28piss26db] {
        padding: 1rem;
    }
    .page-layout[b-28piss26db] {
        grid-template-columns: 1fr;
    }
    .sidebar[b-28piss26db] {
        display: none;
    }
    .schedule-table[b-28piss26db] {
        font-size: 0.8rem;
    }
    .schedule-table th[b-28piss26db],
    .schedule-table td[b-28piss26db] {
        font-size: 0.65rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hide less important columns on small screens */
    .schedule-table th.col-venue[b-28piss26db],
    .schedule-table td.col-venue[b-28piss26db] {
        display: none;
    }
    .schedule-controls[b-28piss26db] {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    .page-title[b-28piss26db] {
        font-size: 1.5rem;
    }
}
/* _content/AllGameTimes/Components/Pages/Soccer/Soccer.razor.rz.scp.css */
/* --- New Ad Layout Styles --- */
.page-layout-right-ad[b-7k55r70y9h] {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1.5rem;
    padding: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.content-wrapper[b-7k55r70y9h] {
    min-width: 0;
    max-width: 100%;
}

.sidebar[b-7k55r70y9h] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* --- Modified Base Page Style --- */
.schedule-page[b-7k55r70y9h] {
    --accent-primary: #005fcc;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    background-color: var(--bg-secondary);
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.panel[b-7k55r70y9h] {
    background-color: var(--surface-primary);
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

/* Header */
.page-header[b-7k55r70y9h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-brand[b-7k55r70y9h] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-icon[b-7k55r70y9h] {
    width: 56px;
    height: 56px;
    background: linear-gradient(145deg, #0d254c, #013369);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
}

.page-title[b-7k55r70y9h] {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.page-subtitle[b-7k55r70y9h] {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
}

.header-controls[b-7k55r70y9h] {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.week-nav[b-7k55r70y9h], .timezone-selector[b-7k55r70y9h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timezone-label[b-7k55r70y9h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-nav[b-7k55r70y9h] {
    background-color: var(--surface-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-nav:hover[b-7k55r70y9h] {
        background-color: var(--surface-tertiary);
        box-shadow: var(--shadow-small);
    }

.timezone-chips[b-7k55r70y9h] {
    display: flex;
    background-color: var(--surface-secondary);
    border-radius: 8px;
    padding: 4px;
    border: 1px solid var(--border-color);
}

.btn-chip[b-7k55r70y9h] {
    border: none;
    background-color: transparent;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s;
}

    .btn-chip.active[b-7k55r70y9h] {
        background-color: var(--accent-primary);
        color: white;
        box-shadow: var(--shadow-small);
    }

/* Filter Area */
.filter-area[b-7k55r70y9h] {
    padding: 1rem 1.5rem;
}

.filter-options-header[b-7k55r70y9h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

    .filter-options-header h3[b-7k55r70y9h] {
        font-size: 1.25rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.btn-clear-filter[b-7k55r70y9h], .btn-toggle-section[b-7k55r70y9h] {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
}

    .btn-clear-filter:hover[b-7k55r70y9h], .btn-toggle-section:hover[b-7k55r70y9h] {
        color: var(--accent-primary);
    }

.btn-toggle-section[b-7k55r70y9h] {
    font-size: 1.25rem;
}

.filter-panel-grid[b-7k55r70y9h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140x, 1fr));
    gap: 2rem;
}

.filter-column .filter-options-header[b-7k55r70y9h] {
    margin-bottom: 0.75rem;
}

.filter-grid[b-7k55r70y9h] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 0.5rem;
}

.filter-card[b-7k55r70y9h] {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.25rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .filter-card:hover[b-7k55r70y9h] {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    .filter-card.active[b-7k55r70y9h] {
        border-color: var(--accent-primary);
        box-shadow: 0 0 0 2px var(--accent-primary);
    }

.filter-card-name[b-7k55r70y9h] {
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-card-check-icon[b-7k55r70y9h] {
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease-in-out;
}

.filter-card.active .filter-card-check-icon[b-7k55r70y9h] {
    opacity: 1;
    transform: scale(1);
}

/* Main Content */
.main-content[b-7k55r70y9h] {
    flex-grow: 1;
    max-width: 100%;
    overflow-x: hidden;
}

.schedule-grid[b-7k55r70y9h] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.day-card[b-7k55r70y9h] {
    padding: 1rem 1.5rem;
}

.day-header[b-7k55r70y9h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.day-title[b-7k55r70y9h] {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.day-controls[b-7k55r70y9h] {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.btn-toggle-day[b-7k55r70y9h] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary);
}

.schedule-viewport[b-7k55r70y9h] {
    overflow-x: auto;
    padding-top: 1rem;
    max-width: 100%;
}

.schedule-table-container[b-7k55r70y9h] {
    min-width: 1000px;
    --grid-scale: 1;
}

@media (max-width: 1400px) {
    .schedule-table-container[b-7k55r70y9h] {
        --grid-scale: 0.95;
    }
}

@media (max-width: 1280px) {
    .schedule-table-container[b-7k55r70y9h] {
        --grid-scale: 0.90;
    }
}

@media (max-width: 1150px) {
    .schedule-table-container[b-7k55r70y9h] {
        --grid-scale: 0.85;
    }
}

@media (max-width: 1040px) {
    .schedule-table-container[b-7k55r70y9h] {
        --grid-scale: 0.80;
    }

    .page-layout-right-ad[b-7k55r70y9h] {
        grid-template-columns: 1fr;
        padding: 0.75rem;
    }

    .sidebar[b-7k55r70y9h] {
        display: none;
    }
}

/* Prefer zoom; fallback to transform */
@supports (zoom: 1) {
    .schedule-table-container[b-7k55r70y9h] {
        zoom: var(--grid-scale);
        transform: none;
        width: auto;
    }
}

@supports not (zoom: 1) {
    .schedule-table-container[b-7k55r70y9h] {
        transform: scale(var(--grid-scale));
        transform-origin: top left;
        width: calc(100% / var(--grid-scale));
    }
}

.schedule-table[b-7k55r70y9h] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.station-header[b-7k55r70y9h], .time-header[b-7k55r70y9h] {
    text-align: left;
    padding: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    border-bottom: 2px solid var(--border-color);
}

.time-header[b-7k55r70y9h] {
    text-align: center;
}

.station-cell[b-7k55r70y9h] {
    padding: 0.5rem;
    font-weight: 600;
    vertical-align: top;
    width: 120px;
}

.game-cell[b-7k55r70y9h] {
    padding: 4px;
}

.empty-cell[b-7k55r70y9h] {
    background-color: var(--surface-secondary);
    border-radius: 8px;
}

/* Matchup Card */
.matchup-card[b-7k55r70y9h] {
    display: flex;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    color: white;
    box-shadow: var(--shadow-small);
    border: 1px solid var(--border-color);
}

    .matchup-card.is-completed[b-7k55r70y9h] {
        opacity: 0.6;
    }

.segment[b-7k55r70y9h] {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0.35rem 0.6rem;
    font-size: 1.05rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

    .segment.left[b-7k55r70y9h] {
        background-color: var(--away-color);
        color: var(--away-secondary);
        text-align: left;
    }

    .segment.right[b-7k55r70y9h] {
        background-color: var(--home-color);
        color: var(--home-secondary);
        align-items: flex-end;
        text-align: right;
    }

.team-stack[b-7k55r70y9h] {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.05;
}

.team-name[b-7k55r70y9h] {
    font-size: 1em;
    font-weight: 800;
    white-space: nowrap;
}

.dd-pill[b-7k55r70y9h] {
    display: inline-block;
    padding: 1px 6px;
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border-radius: 6px;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    overflow: hidden;
    line-height: 1.2;
}

.schedule-grid .matchup-card .dd-pill[b-7k55r70y9h] {
    font-size: 0.60rem;
}

/* Improved VS badge visibility and sizing */
.vs-badge[b-7k55r70y9h] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--center-bg, #444);
    color: var(--center-fg, #fff);
    border-radius: 999px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(255, 255, 255, 0.06) inset;
    text-shadow: 0 1px 1px rgba(0,0,0,0.25);
    font-size: .85rem;
}

    .vs-badge.tone-center[b-7k55r70y9h] {
        background-color: var(--center-bg, #444);
        color: var(--center-fg, #fff);
        width: 75px;
        height: 75px;
    }
/* Larger when live (card-level) */
.matchup-card.is-live .vs-badge[b-7k55r70y9h] {
    width: 75px;
    height: 75px;
}

.live-indicator[b-7k55r70y9h] {
    position: absolute;
    top: 6px;
    right: 8px;
    background-color: #e53935;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-dot[b-7k55r70y9h] {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    animation: pulse-b-7k55r70y9h 1.5s infinite;
}

@keyframes pulse-b-7k55r70y9h {
    0% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }

    100% {
        opacity: 1;
    }
}

.meta-row[b-7k55r70y9h] {
    position: absolute;
    bottom: 4px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.meta-item[b-7k55r70y9h] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.live-score-footer[b-7k55r70y9h] {
    position: absolute;
    left: 50%;
    bottom: 4px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.7rem;
    line-height: 1.05;
    text-shadow: none;
    pointer-events: none;
    border: none;
}

    .live-score-footer .line[b-7k55r70y9h] {
        white-space: nowrap;
    }

.matchup-card:has(.live-score-footer) .vs-badge[b-7k55r70y9h] {
    display: none !important;
}

/* Desktop sizing tweaks */
.schedule-grid .matchup-card[b-7k55r70y9h] {
    height: 42px;
}

    .schedule-grid .matchup-card .segment[b-7k55r70y9h] {
        font-size: 0.85rem;
    }
    /* Larger badge in desktop grid rows */
    .schedule-grid .matchup-card .vs-badge[b-7k55r70y9h] {
        width: 40px;
        height: 40px;
        font-size: 0.65rem;
    }
    /* Even larger while live in desktop grid */
    .schedule-grid .matchup-card.is-live .vs-badge[b-7k55r70y9h] {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .schedule-grid .matchup-card .meta-row[b-7k55r70y9h] {
        display: none;
    }

.schedule-grid .live-score-footer[b-7k55r70y9h] {
    bottom: 2px;
    font-size: 0.65rem;
}

/* Mobile View */
.mobile-schedule-list[b-7k55r70y9h] {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.mobile-day-header[b-7k55r70y9h] {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem;
    background-color: var(--surface-secondary);
    border-radius: 8px;
    text-align: center;
}

/* Tablet optimizations */
@media (max-width: 768px) {
    .page-layout-right-ad[b-7k55r70y9h] {
        padding: 0.5rem;
    }

    .page-header[b-7k55r70y9h] {
        padding: 0.75rem 1rem;
    }

    .page-title[b-7k55r70y9h] {
        font-size: 1.5rem;
    }

    .brand-icon[b-7k55r70y9h] {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .header-controls[b-7k55r70y9h] {
        gap: 1rem;
    }

    .filter-panel-grid[b-7k55r70y9h] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .filter-grid[b-7k55r70y9h] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Mobile optimizations */
@media (max-width: 992px) {
    .schedule-page > .page-header[b-7k55r70y9h] {
        display: none;
    }

    .dd-pill[b-7k55r70y9h] {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }

    .page-layout-right-ad[b-7k55r70y9h] {
        grid-template-columns: 1fr;
        padding: 0.5rem;
    }

    .sidebar[b-7k55r70y9h] {
        display: none;
    }

    .schedule-grid[b-7k55r70y9h] {
        display: none;
    }

    .panel[b-7k55r70y9h] {
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    .page-header[b-7k55r70y9h],
    .filter-area[b-7k55r70y9h],
    .day-card[b-7k55r70y9h] {
        padding: 0.75rem 1rem;
    }

    .mobile-schedule-list.bytime[b-7k55r70y9h] {
        display: grid;
        gap: 0.75rem;
    }

    .mobile-time-section.panel[b-7k55r70y9h] {
        border: 1px solid var(--border-color);
        border-radius: 10px;
        background: var(--surface-primary);
        box-shadow: var(--shadow-medium);
        overflow: hidden;
        box-sizing: border-box;
        inline-size: 100%;
        max-inline-size: calc(100vw - 6rem);
        margin-inline: auto;
    }

    .mobile-time-header[b-7k55r70y9h] {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
        background: var(--surface-primary);
        font-weight: 600;
        width: 100%;
        text-align: left;
        cursor: pointer;
        border: none;
        outline: none;
    }

    .mobile-time-body[b-7k55r70y9h] {
        display: block;
    }

    .mobile-time-section.collapsed .mobile-time-body[b-7k55r70y9h] {
        display: none;
    }

    .mobile-network-row[b-7k55r70y9h] {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--border-color);
        box-sizing: border-box;
    }

        .mobile-network-row:last-child[b-7k55r70y9h] {
            border-bottom: none;
        }

    .network-label[b-7k55r70y9h] {
        font-weight: 600;
        color: var(--text-secondary);
        display: flex;
        align-items: center;
        font-size: 0.75rem;
    }

    .network-games[b-7k55r70y9h] {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-game-item[b-7k55r70y9h] {
        background-color: var(--surface-primary);
        border-radius: 8px;
        padding: 0;
        box-shadow: none;
    }

        .mobile-game-item .matchup-card[b-7k55r70y9h] {
            height: 54px;
            width: 100%;
            max-width: 100%;
        }

            .mobile-game-item .matchup-card .segment[b-7k55r70y9h] {
                font-size: 0.86rem;
            }

            /* Larger badge on mobile, with live variant */
            .mobile-game-item .matchup-card .vs-badge[b-7k55r70y9h] {
                width: 40px;
                height: 40px;
                font-size: 0.72rem;
                background-color: var(--center-bg, #444);
                color: var(--center-fg, #fff);
                border: 1px solid rgba(0,0,0,0.25);
                box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18), 0 0 0 2px rgba(255, 255, 255, 0.06) inset;
                text-shadow: 0 1px 1px rgba(0,0,0,0.25);
                border-radius: 999px;
            }

            .mobile-game-item .matchup-card.is-live .vs-badge[b-7k55r70y9h] {
                width: 40px;
                height: 40px;
                font-size: 0.8rem;
            }

            .mobile-game-item .matchup-card .dd-pill[b-7k55r70y9h] {
                font-size: 0.60rem;
            }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .page-layout-right-ad[b-7k55r70y9h] {
        padding: 0.25rem;
    }

    .filter-area[b-7k55r70y9h],
    .day-card[b-7k55r70y9h] {
        padding: 0.5rem 0.75rem;
    }

    .mobile-time-header[b-7k55r70y9h] {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .mobile-network-row[b-7k55r70y9h] {
        grid-template-columns: 56px 1fr;
        padding: 0.5rem 0.75rem;
        gap: 0.35rem;
    }

    .network-label[b-7k55r70y9h] {
        font-size: 0.7rem;
    }

    .mobile-game-item .matchup-card[b-7k55r70y9h] {
        height: 48px;
    }

        .mobile-game-item .matchup-card .segment[b-7k55r70y9h] {
            font-size: 0.78rem;
            padding: 0.3rem 0.5rem;
        }
        /* Larger small-mobile badge, with live variant */
        .mobile-game-item .matchup-card .vs-badge[b-7k55r70y9h] {
            width: 40px;
            height: 40px;
            font-size: 0.68rem;
        }

        .mobile-game-item .matchup-card.is-live .vs-badge[b-7k55r70y9h] {
            width: 40px;
            height: 40px;
            font-size: 0.75rem;
        }

    .filter-grid[b-7k55r70y9h] {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    }
}

/* No Games State */
.no-games-state[b-7k55r70y9h] {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--surface-primary);
    border-radius: 12px;
}

.no-games-icon[b-7k55r70y9h] {
    font-size: 4rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.no-games-title[b-7k55r70y9h] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.no-games-message[b-7k55r70y9h] {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-reset-filters[b-7k55r70y9h] {
    background-color: var(--accent-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.team-anchor[b-7k55r70y9h] {
    position: relative;
    top: -80px;
    display: block;
    height: 0;
    overflow: hidden;
}
/* _content/AllGameTimes/Components/Pages/TeamStats/NFL/NflTeamStats.razor.rz.scp.css */
:root[b-c1t90yzvox] {
    --accent-color: #007bff;
    --positive-color: #1a7431;
    --negative-color: #b31d1d;
    --panel-bg: #ffffff;
    --panel-border: #dee2e6;
    --table-header-bg: #f8f9fa;
    --table-row-hover: #f1f3f5;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
}

.team-stats-page[b-c1t90yzvox] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Use max-width and margin for a centered, responsive layout */
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem;
}

/* Page Header */
.page-header[b-c1t90yzvox] {
    border-bottom: 1px solid var(--panel-border);
    padding-bottom: 1rem;
}

.page-title[b-c1t90yzvox] {
    font-size: 1.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-subtitle[b-c1t90yzvox] {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.25rem 0 0 2.25rem;
}

/* Common Panel Style */
.panel[b-c1t90yzvox] {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.panel-title[b-c1t90yzvox] {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--panel-border);
    flex-shrink: 0;
}

/* Team Selector Pills */
.teams-selector[b-c1t90yzvox] {
    padding: 0.75rem;
}

.teams-pills[b-c1t90yzvox] {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.team-pill[b-c1t90yzvox] {
    --team-color: #6c757d; /* Default color */
    border: 2px solid var(--team-color);
    border-radius: 999px;
    padding: .38rem 1.1rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background: transparent;
    color: var(--team-color);
    opacity: 0.75;
}

    .team-pill:hover[b-c1t90yzvox] {
        opacity: 1;
    }

    .team-pill.active[b-c1t90yzvox] {
        background: var(--team-color);
        color: #fff;
        opacity: 1;
        box-shadow: 0 2px 8px color-mix(in srgb, var(--team-color), transparent 70%);
    }

/* --- History Layout and Chart Styles --- */
.history-container[b-c1t90yzvox] {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.historical-summary.panel[b-c1t90yzvox],
.agttm-chart.panel[b-c1t90yzvox] {
    flex: 1 1 0;
    min-width: 0;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

    .agttm-chart.panel .chart-svg[b-c1t90yzvox] {
        height: 100%;
        width: 100%;
        min-height: 420px;
        display: block;
    }

.grid-line[b-c1t90yzvox] {
    stroke: #e9ecef;
    stroke-width: 1;
}

.axis-text[b-c1t90yzvox] {
    font-size: 10px;
    fill: var(--text-secondary);
}

.y-axis-text[b-c1t90yzvox] {
    text-anchor: end;
    dominant-baseline: middle;
}

.x-axis-text[b-c1t90yzvox] {
    text-anchor: middle;
}

.chart-line[b-c1t90yzvox] {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}

    .chart-line.inactive[b-c1t90yzvox] {
        stroke: #ced4da;
        opacity: 0.5;
    }

    .chart-line.active[b-c1t90yzvox] {
        stroke: var(--team-color);
        stroke-width: 4;
        opacity: 1;
    }

/* --- Table Styles --- */
.table-scroll[b-c1t90yzvox] {
    overflow-x: auto;
    flex-grow: 1;
}

.stats-table[b-c1t90yzvox] {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
    line-height: 2.25;
}

    .stats-table th[b-c1t90yzvox],
    .stats-table td[b-c1t90yzvox] {
        border: 1px solid var(--panel-border);
        padding: .3rem .5rem;
        text-align: center;
        white-space: nowrap;
    }

    .stats-table thead th[b-c1t90yzvox] {
        background: var(--table-header-bg);
        padding: 1rem;
        font-weight: 600;
        color: var(--text-secondary);
        font-size: .75rem;
        text-transform: uppercase;
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .stats-table tbody tr[b-c1t90yzvox] {
        transition: background-color 0.15s ease;
    }

        .stats-table tbody tr:hover[b-c1t90yzvox] {
            background-color: var(--table-row-hover);
            cursor: pointer;
        }

        .stats-table tbody tr.selected[b-c1t90yzvox] {
            background-color: color-mix(in oklab, var(--accent-color), white 85%);
        }

.season-year-btn[b-c1t90yzvox] {
    background: #f3f4f6;
    border: 1.5px solid #bbb;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9em;
    color: #333;
    padding: .18rem .7rem;
    cursor: pointer;
    transition: all .13s;
    outline: none;
    width: 100%;
}

    .stats-table tbody tr:hover .season-year-btn[b-c1t90yzvox],
    .season-year-btn.active[b-c1t90yzvox] {
        background: var(--accent-color);
        color: #fff;
        border-color: var(--accent-color);
    }

        /* Custom override for NFL theme */
        .season-year-btn.active.nfl-theme[b-c1t90yzvox] {
            background: #D84315 !important;
            color: #fff !important;
            border: 1.5px solid #fff !important;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        }


td.pos[b-c1t90yzvox] {
    color: var(--positive-color);
    font-weight: 700;
}

td.neg[b-c1t90yzvox] {
    color: var(--negative-color);
    font-weight: 700;
}

.pct-bar[b-c1t90yzvox] {
    position: relative;
    height: 20px;
    border-radius: 4px;
    background-color: #e9ecef;
    min-width: 60px;
    overflow: hidden;
    margin: 0 auto;
}

    .pct-bar .fill[b-c1t90yzvox] {
        height: 100%;
        background: linear-gradient(90deg, #60a5fa, #34d399);
    }

    .pct-bar .label[b-c1t90yzvox] {
        position: absolute;
        inset: 0;
        display: grid;
        place-items: center;
        font-size: 0.75rem;
        font-weight: 700;
        color: #333;
    }

/* --- Detailed Season Stats --- */
.season-stats-detail[b-c1t90yzvox] {
    animation: fadeIn-b-c1t90yzvox 0.4s ease;
}

.stats-grid[b-c1t90yzvox] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
    padding: 1.25rem;
}

.stat-category-card[b-c1t90yzvox] {
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    background-color: var(--panel-bg);
}

.stat-category-title[b-c1t90yzvox] {
    font-size: 1.05em;
    font-weight: 700;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--panel-border);
    background-color: var(--table-header-bg);
    color: #222;
}

.detailed-stats-table[b-c1t90yzvox] {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

    .detailed-stats-table th[b-c1t90yzvox], .detailed-stats-table td[b-c1t90yzvox] {
        padding: .18rem .38rem;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }

    .detailed-stats-table th[b-c1t90yzvox] {
        background: #f3f4f6;
        font-weight: 600;
        color: #444;
        font-size: .93em;
    }

    .detailed-stats-table tr:last-child td[b-c1t90yzvox] {
        border-bottom: none;
    }

    .detailed-stats-table td[b-c1t90yzvox] {
        background: #fff;
        font-size: .98em;
    }

        .detailed-stats-table td[title][b-c1t90yzvox] {
            cursor: help;
            border-bottom: 1px dotted #bbb;
        }

/* Category Buttons */
.category-buttons[b-c1t90yzvox] {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0 1.25rem;
}

.cat-btn[b-c1t90yzvox] {
    padding: 0.4rem 1.1rem;
    border-radius: 6px;
    border: 1px solid var(--cmp-border, #ccc);
    background: var(--cmp-surface-muted, #f5f6f8);
    color: var(--cmp-text, #222);
    font-weight: 600;
    cursor: pointer;
    transition: background .12s, color .12s;
}

    .cat-btn.active[b-c1t90yzvox], .cat-btn:hover[b-c1t90yzvox] {
        background: var(--accent-color, #007bff);
        color: #fff;
        border-color: var(--accent-color, #007bff);
    }

/* Loading / Empty States */
.loading[b-c1t90yzvox], .empty[b-c1t90yzvox], .error[b-c1t90yzvox] {
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.error[b-c1t90yzvox] {
    color: var(--negative-color);
    font-weight: 600;
}

.spinner-sm[b-c1t90yzvox] {
    width: 1.5rem;
    height: 1.5rem;
}

@keyframes fadeIn-b-c1t90yzvox {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE STYLES --- */

/* Tablets and smaller */
@media (max-width: 992px) {
    .team-stats-page[b-c1t90yzvox] {
        padding: 1rem;
        gap: 1rem;
    }

    .history-container[b-c1t90yzvox] {
        flex-direction: column;
    }

    .agttm-chart[b-c1t90yzvox] {
        margin-top: 0;
    }

    .page-title[b-c1t90yzvox] {
        font-size: 1.5rem;
    }

    .page-subtitle[b-c1t90yzvox] {
        margin-left: 2rem;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {
    .page-header[b-c1t90yzvox] {
        text-align: center;
    }

    .page-title[b-c1t90yzvox] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .page-subtitle[b-c1t90yzvox] {
        margin: 0.5rem 0 0 0;
    }

    .panel-title[b-c1t90yzvox] {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
    }

    .team-pill[b-c1t90yzvox] {
        font-size: 0.9rem;
        padding: .3rem .9rem;
    }

    .stats-table[b-c1t90yzvox] {
        font-size: 0.9rem;
    }

        .stats-table thead th[b-c1t90yzvox],
        .stats-table tbody td[b-c1t90yzvox] {
            padding: .5rem;
        }

    .stats-grid[b-c1t90yzvox] {
        grid-template-columns: 1fr; /* Force single column */
        padding: 1rem;
    }

    .category-buttons[b-c1t90yzvox] {
        padding: 0 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .team-stats-page[b-c1t90yzvox] {
        padding: 0.5rem;
    }

    .panel-title[b-c1t90yzvox] {
        font-size: 1rem;
    }

    .team-pill[b-c1t90yzvox] {
        font-size: 0.8rem;
        padding: .25rem .75rem;
    }

    .stats-table[b-c1t90yzvox] {
        font-size: 0.85rem;
    }

        .stats-table thead th[b-c1t90yzvox] {
            padding: 0.5rem 0.25rem;
            font-size: 0.7rem;
        }

        .stats-table tbody td[b-c1t90yzvox] {
            padding: 0.25rem;
        }

    .stats-grid[b-c1t90yzvox] {
        padding: 0.5rem;
    }

    .category-buttons[b-c1t90yzvox] {
        padding: 0 0.5rem;
    }
}
/* _content/AllGameTimes/Components/Pages/Test.razor.rz.scp.css */
.my-test-button[b-21rhmebskg] {
    background-color: crimson;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}
/* _content/AllGameTimes/Components/Shared/CalendarSyncDialog.razor.rz.scp.css */
/* Calendar Sync Dialog Styles */
.dialog-overlay[b-2f8ge0b1nk] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px) saturate(120%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    animation: overlay-enter-b-2f8ge0b1nk 0.2s ease-out;
}

@keyframes overlay-enter-b-2f8ge0b1nk {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px) saturate(120%);
    }
}

.dialog-container[b-2f8ge0b1nk] {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05);
    width: min(600px, 95vw);
    max-height: 90vh;
    overflow: hidden;
    animation: dialog-enter-b-2f8ge0b1nk 0.3s ease-out;
    position: relative;
}

@keyframes dialog-enter-b-2f8ge0b1nk {
    from {
        opacity: 0;
        transform: translateY(-16px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header Styles */
.dialog-header[b-2f8ge0b1nk] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1.5rem 2rem;
    border-bottom: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    position: relative;
}

.dialog-title-section[b-2f8ge0b1nk] {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.dialog-icon[b-2f8ge0b1nk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.dialog-title-content[b-2f8ge0b1nk] {
    flex: 1;
    min-width: 0;
}

.dialog-title[b-2f8ge0b1nk] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.025em;
    color: #1e293b;
}

.dialog-subtitle[b-2f8ge0b1nk] {
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
    color: #64748b;
}

/* Brand colors in subtitle */
.brand-all[b-2f8ge0b1nk], .brand-times[b-2f8ge0b1nk] {
    color: #1e293b;
    font-weight: 600;
}

.brand-game[b-2f8ge0b1nk] {
    color: #ff7f00;
    font-weight: 700;
}

.dialog-close-btn[b-2f8ge0b1nk] {
    background: rgba(100, 116, 139, 0.1);
    border: 1px solid rgba(100, 116, 139, 0.2);
    color: #64748b;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

    .dialog-close-btn:hover[b-2f8ge0b1nk] {
        background: rgba(100, 116, 139, 0.2);
        border-color: rgba(100, 116, 139, 0.3);
        transform: scale(1.05);
    }

/* Content Styles */
.dialog-content[b-2f8ge0b1nk] {
    padding: 0;
    max-height: calc(90vh - 140px);
    overflow-y: auto;
}

.subscription-section[b-2f8ge0b1nk],
.instructions-section[b-2f8ge0b1nk],
.benefits-section[b-2f8ge0b1nk] {
    padding: 1.5rem 2rem;
}

.subscription-section[b-2f8ge0b1nk] {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.section-title[b-2f8ge0b1nk] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.section-description[b-2f8ge0b1nk] {
    color: #64748b;
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

/* URL Input Group - Fixed overlap and mobile issues */
.url-input-group[b-2f8ge0b1nk] {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.url-input-container[b-2f8ge0b1nk] {
    flex: 1;
    position: relative;
    min-width: 0; /* Prevents flex item from overflowing */
}

.url-input[b-2f8ge0b1nk] {
    width: 100%;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    font-size: 0.875rem;
    font-family: 'SF Mono', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;
    color: #475569;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

    .url-input:focus[b-2f8ge0b1nk] {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.input-icon[b-2f8ge0b1nk] {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
    pointer-events: none;
}

.copy-btn[b-2f8ge0b1nk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 0 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 100px;
    max-width: 120px; /* Prevents button from getting too wide */
    justify-content: center;
    flex-shrink: 0; /* Prevents button from shrinking */
}

    .copy-btn:hover[b-2f8ge0b1nk] {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .copy-btn.success[b-2f8ge0b1nk] {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

/* Platform Tabs - Fixed clicking issues */
.platform-tabs[b-2f8ge0b1nk] {
    display: flex;
    background: #f1f5f9;
    padding: 0.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    gap: 0.25rem;
}

.platform-tab[b-2f8ge0b1nk] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

    .platform-tab:hover[b-2f8ge0b1nk] {
        color: #475569;
        background: rgba(255, 255, 255, 0.5);
    }

    .platform-tab.active[b-2f8ge0b1nk] {
        background: white;
        color: #1e293b;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

/* Platform Content */
.platform-content[b-2f8ge0b1nk] {
    display: none;
}

    .platform-content.active[b-2f8ge0b1nk] {
        display: block;
    }

.platform-steps[b-2f8ge0b1nk] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step[b-2f8ge0b1nk] {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number[b-2f8ge0b1nk] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.step-content[b-2f8ge0b1nk] {
    flex: 1;
}

    .step-content h4[b-2f8ge0b1nk] {
        font-size: 1rem;
        font-weight: 600;
        color: #1e293b;
        margin: 0 0 0.5rem 0;
    }

    .step-content p[b-2f8ge0b1nk] {
        color: #64748b;
        font-size: 0.875rem;
        line-height: 1.6;
        margin: 0 0 0.5rem 0;
    }

        .step-content p:last-child[b-2f8ge0b1nk] {
            margin-bottom: 0;
        }

    .step-content a[b-2f8ge0b1nk] {
        color: #667eea;
        text-decoration: none;
        font-weight: 500;
    }

        .step-content a:hover[b-2f8ge0b1nk] {
            text-decoration: underline;
        }

/* Benefits Section */
.benefits-section[b-2f8ge0b1nk] {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.benefit-item[b-2f8ge0b1nk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #475569;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

    .benefit-item:last-child[b-2f8ge0b1nk] {
        margin-bottom: 0;
    }

    .benefit-item i[b-2f8ge0b1nk] {
        color: #10b981;
        font-size: 1rem;
        flex-shrink: 0;
    }

/* Footer Styles */
.dialog-footer[b-2f8ge0b1nk] {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
}

.footer-close-btn[b-2f8ge0b1nk] {
    background: #64748b;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

    .footer-close-btn:hover[b-2f8ge0b1nk] {
        background: #475569;
        transform: translateY(-1px);
    }

/* Mobile Responsive - Improved mobile experience */
@media (max-width: 640px) {
    .dialog-container[b-2f8ge0b1nk] {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .dialog-header[b-2f8ge0b1nk] {
        padding: 1.5rem 1rem 1rem 1rem;
    }

    .dialog-title[b-2f8ge0b1nk] {
        font-size: 1.25rem;
    }

    .subscription-section[b-2f8ge0b1nk],
    .instructions-section[b-2f8ge0b1nk],
    .benefits-section[b-2f8ge0b1nk] {
        padding: 1rem;
    }

    .dialog-footer[b-2f8ge0b1nk] {
        padding: 1rem;
    }

    /* Fixed mobile URL input group */
    .url-input-group[b-2f8ge0b1nk] {
        flex-direction: column;
        gap: 0.75rem;
    }

    .copy-btn[b-2f8ge0b1nk] {
        min-width: auto;
        max-width: none;
        align-self: stretch;
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }

    /* Improved mobile platform tabs */
    .platform-tabs[b-2f8ge0b1nk] {
        flex-direction: row;
        gap: 0.25rem;
        padding: 0.25rem;
    }

    .platform-tab[b-2f8ge0b1nk] {
        padding: 0.875rem 0.75rem;
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.25rem;
    }

        .platform-tab i[b-2f8ge0b1nk] {
            font-size: 1.1rem;
        }

    .step[b-2f8ge0b1nk] {
        gap: 0.75rem;
    }

    .step-number[b-2f8ge0b1nk] {
        margin-top: 0.25rem;
    }

    .step-content h4[b-2f8ge0b1nk] {
        font-size: 0.95rem;
    }

    .step-content p[b-2f8ge0b1nk] {
        font-size: 0.85rem;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) and (min-width: 641px) {
    .url-input-group[b-2f8ge0b1nk] {
        gap: 0.5rem;
    }

    .copy-btn[b-2f8ge0b1nk] {
        min-width: 90px;
        padding: 0.875rem 1rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .dialog-container[b-2f8ge0b1nk] {
        background: #1e293b;
        color: #e2e8f0;
    }

    .dialog-header[b-2f8ge0b1nk] {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-bottom-color: #334155;
    }

    .dialog-title[b-2f8ge0b1nk] {
        color: #f1f5f9;
    }

    .dialog-subtitle[b-2f8ge0b1nk] {
        color: #94a3b8;
    }

    .brand-all[b-2f8ge0b1nk], .brand-times[b-2f8ge0b1nk] {
        color: #f1f5f9;
    }

    .dialog-close-btn[b-2f8ge0b1nk] {
        background: rgba(148, 163, 184, 0.1);
        border-color: rgba(148, 163, 184, 0.2);
        color: #94a3b8;
    }

        .dialog-close-btn:hover[b-2f8ge0b1nk] {
            background: rgba(148, 163, 184, 0.2);
            border-color: rgba(148, 163, 184, 0.3);
        }

    .subscription-section[b-2f8ge0b1nk],
    .benefits-section[b-2f8ge0b1nk],
    .dialog-footer[b-2f8ge0b1nk] {
        background: #0f172a;
        border-color: #334155;
    }

    .instructions-section[b-2f8ge0b1nk] {
        border-color: #334155;
    }

    .section-title[b-2f8ge0b1nk] {
        color: #f1f5f9;
    }

    .section-description[b-2f8ge0b1nk] {
        color: #94a3b8;
    }

    .url-input[b-2f8ge0b1nk] {
        background: #334155;
        border-color: #475569;
        color: #e2e8f0;
    }

        .url-input:focus[b-2f8ge0b1nk] {
            border-color: #667eea;
        }

    .platform-tabs[b-2f8ge0b1nk] {
        background: #334155;
    }

    .platform-tab[b-2f8ge0b1nk] {
        color: #94a3b8;
    }

        .platform-tab:hover[b-2f8ge0b1nk] {
            color: #e2e8f0;
            background: rgba(255, 255, 255, 0.1);
        }

        .platform-tab.active[b-2f8ge0b1nk] {
            background: #475569;
            color: #f1f5f9;
        }

    .step-content h4[b-2f8ge0b1nk] {
        color: #f1f5f9;
    }

    .step-content p[b-2f8ge0b1nk] {
        color: #94a3b8;
    }

    .benefit-item[b-2f8ge0b1nk] {
        color: #cbd5e1;
    }

    .footer-close-btn[b-2f8ge0b1nk] {
        background: #475569;
    }

        .footer-close-btn:hover[b-2f8ge0b1nk] {
            background: #64748b;
        }
}
