/* ============================================
   SCHEDULE PAGE - TRADITIONAL CALENDAR VIEW
   ============================================ */

:root {
    --predators-gold: #FFB81C;
    --predators-navy: #041E42;
    --win-green: #10b981;
    --loss-red: #ef4444;
    --live-red: #dc2626;
}

.page-schedule {
    background: #EDEEF0;
    min-height: 100vh;
}

/* ============================================
   PAGE HEADER
   ============================================ */

.schedule-page-header {
    background: var(--brand-navy-900);
    color: var(--neutral-white);
    padding: var(--space-6) var(--space-6) var(--space-5);
}

.schedule-header-content {
    max-width: var(--container-2xl);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-6);
}

.schedule-page-header h1 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-black);
    line-height: var(--line-height-tight);
    margin: 0;
    color: var(--neutral-white);
}

.add-to-calendar-btn {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 12px 20px;
    background: var(--brand-gold-900);
    color: var(--brand-navy-900);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(255, 184, 28, 0.3);
}

.add-to-calendar-btn:hover {
    background: #ffcc4d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 184, 28, 0.4);
}

.add-to-calendar-btn svg {
    stroke: currentColor;
    flex-shrink: 0;
}

/* ============================================
   CALENDAR CONTROLS (Deprecated - moved inside calendar)
   ============================================ */

.month-nav-btn {
    width: var(--button-height);
    height: var(--button-height);
    border: var(--border-width-2) solid var(--neutral-700);
    background: var(--brand-gold-900);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    color: var(--brand-navy-900);
}

.month-nav-btn svg {
    display: block;
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.month-nav-btn:hover {
    background: var(--brand-navy-900);
    border-color: var(--brand-navy-900);
    color: var(--brand-gold-900);
    transform: scale(1.05);
}

.current-month {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-tight);
    color: var(--neutral-800);
    min-width: 220px;
    text-align: center;
    margin: 0;
}

/* ============================================
   CALENDAR SECTION
   ============================================ */

.calendar-section {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: var(--space-8) var(--space-6);
}

/* Calendar Month Navigation (inside grid) */
.calendar-month-nav {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    padding: var(--space-5) var(--space-6);
    background: var(--neutral-white);
    border-bottom: var(--border-width-2) solid var(--neutral-800);
}

/* Mobile: Make section scrollable - CRITICAL FIX */
@media (max-width: 480px) {
    .calendar-section {
        padding: 24px 0 !important; /* Remove side padding for full width scroll */
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

.calendar-container {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ============================================
   CALENDAR GRID - TRADITIONAL LAYOUT
   ============================================ */

.calendar-grid {
    width: 100%;
}

.calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #041E42;
    border-bottom: 3px solid var(--predators-gold);
}

.day-header {
    padding: 16px 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #FFFFFF;
}

.calendar-day {
    min-height: 120px;
    border: 1px solid #1E1F21;
    padding: 8px;
    background: #FFFFFF;
    position: relative;
    transition: all 0.2s ease;
}

.calendar-day.empty {
    background: #EDEEF0;
}

.calendar-day.today {
    background: #fffbf0;
    border: 2px solid var(--predators-gold);
}

.calendar-day.has-game:hover {
    background: #EDEEF0;
    cursor: pointer;
}

.day-number {
    font-size: 16px;
    font-weight: 700;
    color: #48494A;
    margin-bottom: 8px;
}

.calendar-day.today .day-number {
    color: var(--predators-gold);
}

/* ============================================
   GAME CELLS
   ============================================ */

.game-cell {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-top: 6px;
    padding: 8px;
    border-radius: 6px;
    font-size: 12px;
    transition: all 0.2s ease;
}

.game-cell.win {
    background: rgba(16, 185, 129, 0.15);
    border-left: 3px solid var(--win-green);
}

.game-cell.loss {
    background: rgba(239, 68, 68, 0.15);
    border-left: 3px solid var(--loss-red);
}

.game-cell.live {
    background: rgba(220, 38, 38, 0.15);
    border-left: 3px solid var(--live-red);
    animation: pulse 2s infinite;
}

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

.game-cell.upcoming {
    background: #EDEEF0;
    border-left: 3px solid #48494A;
}

/* Home/Away Location Tag in Calendar */
.game-location-tag {
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 8px;
    font-weight: 800;
    padding: 2px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-location-tag.home {
    background: var(--predators-gold);
    color: var(--predators-navy);
}

.game-location-tag.away {
    background: var(--predators-navy);
    color: white;
}

/* Ensure game-cell is positioned for absolute child */
.game-cell {
    position: relative;
}

.game-opponent {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.opponent-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.opponent-abbrev {
    font-weight: 600;
    color: #48494A;
    font-size: 11px;
}

.game-score {
    font-weight: 700;
    color: #48494A;
    font-size: 13px;
}

.game-time {
    font-weight: 600;
    color: #6b7280;
    font-size: 11px;
}

/* ============================================
   LOADING & ERROR STATES
   ============================================ */

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    gap: 16px;
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--predators-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #6b7280;
    font-size: 14px;
}

.error-message {
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
    font-size: 16px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .calendar-day {
        min-height: 100px;
    }

    .day-number {
        font-size: 14px;
    }

    .opponent-abbrev {
        font-size: 10px;
    }

    .game-score,
    .game-time {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .schedule-page-header {
        padding: 24px 16px 20px;
    }

    .schedule-header-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        align-items: center;
    }

    .schedule-page-header h1 {
        font-size: 24px;
        flex: 1;
        min-width: 150px;
    }

    .add-to-calendar-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .add-to-calendar-btn svg {
        width: 18px;
        height: 18px;
    }
}

    .calendar-controls {
        padding: 16px;
    }

    .current-month {
        font-size: 18px;
        min-width: 160px;
    }

    .calendar-section {
        padding: 24px 12px;
    }

    .calendar-day {
        min-height: 80px;
        padding: 6px;
    }

    .day-header {
        padding: 12px 8px;
        font-size: 12px;
    }

    .day-number {
        font-size: 13px;
        margin-bottom: 4px;
    }

    .game-cell {
        padding: 6px;
        margin-top: 4px;
    }

    .opponent-logo {
        width: 16px;
        height: 16px;
    }

    .opponent-abbrev {
        font-size: 12px; /* Increased from 9px for readability */
    }

    .game-score,
    .game-time {
        font-size: 13px; /* Increased from 10px - WCAG minimum */
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS - COMPACT CALENDAR
   ============================================ */

@media (max-width: 768px) {
    .schedule-page-header {
        padding: 24px 16px 20px;
    }

    .schedule-header-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .schedule-page-header h1 {
        font-size: 24px;
    }

    .calendar-controls {
        padding: 12px 16px;
    }

    .controls-wrapper {
        gap: var(--space-4);
    }

    .current-month {
        font-size: 18px;
        min-width: 180px;
    }

    .month-nav-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
    }

    .month-nav-btn svg {
        width: 28px !important;
        height: 28px !important;
        stroke-width: 3 !important;
    }

    .calendar-section {
        padding: 12px 8px;
    }

    .calendar-container {
        border-radius: 8px;
    }

    /* Compact calendar grid for mobile */
    .day-header {
        padding: 8px 2px;
        font-size: 10px;
        letter-spacing: 0;
    }

    .calendar-day {
        min-height: 60px;
        padding: 2px;
        font-size: 10px;
    }

    .day-number {
        font-size: 11px;
        margin-bottom: 2px;
    }

    .game-cell {
        padding: 3px 2px;
        margin-top: 2px;
        border-radius: 3px;
        font-size: 9px;
    }

    .opponent-logo {
        width: 12px;
        height: 12px;
    }

    .opponent-abbrev {
        font-size: 9px;
    }

    .game-score,
    .game-time {
        font-size: 9px;
    }
}

/* ============================================
   MOBILE WEEK VIEW (390px width phones)
   Shows ONE WEEK at a time for better readability
   ============================================ */

@media (max-width: 480px) {
    .page-schedule {
        overflow-x: hidden;
    }

    .calendar-section {
        padding: 8px !important;
    }

    .calendar-container {
        border-radius: 8px !important;
        margin-bottom: 20px;
    }

    /* Mobile View Tabs */
    .mobile-view-tabs {
        display: flex !important;
        gap: 0;
        background: #041E42;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
        margin-bottom: 0;
    }

    .mobile-view-tab {
        flex: 1;
        padding: 12px 16px;
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.6);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
        border-bottom: 3px solid transparent;
    }

    .mobile-view-tab.active {
        color: var(--predators-gold);
        border-bottom-color: var(--predators-gold);
        background: rgba(255, 184, 28, 0.1);
    }

    /* Default: Show both views */
    .mobile-week-view {
        display: block !important;
        margin-bottom: 24px;
    }

    .calendar-grid {
        display: block !important;
    }

    /* When Week View tab is active */
    .view-mode-week .mobile-week-view {
        display: block !important;
    }

    .view-mode-week .calendar-grid {
        display: none !important;
    }

    /* When Month View tab is active */
    .view-mode-month .mobile-week-view {
        display: none !important;
    }

    .view-mode-month .calendar-grid {
        display: block !important;
    }

    /* When Both Views tab is active (default) */
    .view-mode-both .mobile-week-view {
        display: block !important;
    }

    .view-mode-both .calendar-grid {
        display: block !important;
        margin-top: 24px;
    }

    .mobile-week-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 12px;
        background: #041E42;
        border-radius: 8px 8px 0 0;
    }

    .mobile-week-label {
        font-size: 13px;
        font-weight: 700;
        color: white;
    }

    .mobile-week-btn,
    .mobile-prev-week,
    .mobile-next-week {
        background: none;
        border: none;
        color: var(--predators-gold);
        font-size: 24px;
        cursor: pointer;
        padding: 4px 8px;
        font-weight: 700;
        line-height: 1;
    }

    .mobile-week-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 0;
        background: white;
        width: 100%;
    }

    .mobile-week-header {
        padding: 8px 2px;
        text-align: center;
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        color: white;
        background: #041E42;
        border-bottom: 2px solid var(--predators-gold);
    }

    .mobile-week-day {
        min-height: 90px;
        padding: 4px 2px;
        border: 1px solid #e5e7eb;
        background: white;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-week-day.empty {
        background: #f9fafb;
    }

    .mobile-week-day.today {
        background: #fffbf0;
        border: 2px solid var(--predators-gold);
    }

    .mobile-week-day-number {
        font-size: 13px;
        font-weight: 700;
        color: #041E42;
        margin-bottom: 2px;
        text-align: center;
    }

    .mobile-week-day.today .mobile-week-day-number {
        color: var(--predators-gold);
    }

    .mobile-week-game {
        display: flex;
        flex-direction: column;
        gap: 1px;
        padding: 3px 1px;
        border-radius: 3px;
        font-size: 9px;
        margin-top: 2px;
        text-align: center;
        text-decoration: none;
        color: inherit;
    }

    .mobile-week-game.win {
        background: rgba(16, 185, 129, 0.15);
        border-left: 3px solid var(--win-green);
    }

    .mobile-week-game.loss {
        background: rgba(239, 68, 68, 0.15);
        border-left: 3px solid var(--loss-red);
    }

    .mobile-week-game.live {
        background: rgba(220, 38, 38, 0.15);
        border-left: 3px solid var(--live-red);
    }

    .mobile-week-game.upcoming {
        background: #f3f4f6;
        border-left: 3px solid #6b7280;
    }

    .mobile-week-opponent {
        font-weight: 700;
        color: #041E42;
        font-size: 10px;
        line-height: 1.2;
    }

    .mobile-week-logo {
        width: 18px;
        height: 18px;
        margin: 0 auto 1px;
    }

    .mobile-week-time {
        font-size: 9px;
        color: #6b7280;
        font-weight: 600;
    }

    .mobile-week-score {
        font-size: 11px;
        font-weight: 700;
        color: #041E42;
    }

    /* Full Month Calendar Below - Compact Version */
    .calendar-grid {
        display: block !important;
        margin-top: 24px;
    }

    .day-header {
        padding: 6px 1px;
        font-size: 9px;
        letter-spacing: 0;
    }

    .calendar-day {
        min-height: 50px;
        padding: 2px 1px;
        border-width: 0.5px;
    }

    .day-number {
        font-size: 10px;
        margin-bottom: 1px;
    }

    .game-cell {
        padding: 2px 1px;
        margin-top: 1px;
        border-radius: 2px;
        font-size: 8px;
        border-left-width: 2px;
    }

    .game-opponent {
        gap: 1px;
        margin-bottom: 0;
    }

    .opponent-logo {
        display: none;
    }

    .opponent-abbrev {
        font-size: 8px;
        font-weight: 700;
    }

    .game-score,
    .game-time {
        font-size: 8px;
        font-weight: 700;
    }

    .calendar-header {
        border-bottom-width: 2px;
    }
}

/* Hide mobile-specific elements on desktop */
.mobile-week-view {
    display: none;
}

.mobile-view-tabs {
    display: none;
}

/* ============================================
   LIST VIEW STYLES (Mobile-First)
   ============================================ */

/* View Controls */
.view-controls {
    display: flex;
    justify-content: center;
    padding: 16px;
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

.view-toggle {
    display: flex;
    gap: 4px;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
}

button.view-toggle-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    background: transparent !important;
    color: #6b7280 !important;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

button.view-toggle-btn.active {
    background: var(--predators-gold) !important;
    color: var(--predators-navy) !important;
    box-shadow: 0 2px 4px rgba(255, 184, 28, 0.3);
}

.view-toggle-btn svg {
    stroke: currentColor;
}

/* Filter Controls */
.filter-controls {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: white;
    border-bottom: 2px solid var(--predators-gold);
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #e5e7eb;
    background: white;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.filter-btn.active {
    background: var(--predators-navy);
    color: white;
    border-color: var(--predators-navy);
}

.filter-btn:hover:not(.active) {
    border-color: var(--predators-navy);
    color: var(--predators-navy);
}

/* List Sections */
.list-section {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--predators-navy);
    color: white !important;
}

.section-header h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    flex: 1;
    color: white !important;
}

.section-header .section-icon,
.section-header .section-date {
    color: white !important;
}

.section-icon {
    font-size: 20px;
}

.section-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Today's Game Card */
.today-section .section-header {
    background: linear-gradient(135deg, var(--predators-navy) 0%, #0a2d5a 100%);
}

.game-cards {
    padding: 16px;
    background: #f8f9fa;
}

.today-card {
    display: block;
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    border-left: 4px solid var(--predators-gold);
}

.today-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Home/Away Location Badge for Today Card */
.card-location-badge {
    text-align: center;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-location-badge.home {
    background: var(--predators-gold);
    color: var(--predators-navy);
}

.card-location-badge.away {
    background: var(--predators-navy);
    color: white;
}

.today-card.live {
    border-left-color: var(--live-red);
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.today-card.win {
    border-left-color: var(--win-green);
}

.today-card.loss {
    border-left-color: var(--loss-red);
}

.card-matchup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.card-matchup .team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.card-matchup .team-logo {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.card-matchup .team-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--predators-navy);
}

.card-matchup .matchup-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-matchup .vs-text {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.card-status {
    text-align: center;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.live-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--live-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 8px;
    animation: pulse 2s infinite;
}

.live-score {
    font-size: 32px;
    font-weight: 900;
    color: var(--predators-navy);
}

.live-score .score-separator {
    margin: 0 8px;
    color: #6b7280;
}

.final-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 8px;
}

.final-badge.win {
    background: var(--win-green);
    color: white;
}

.final-badge.loss {
    background: var(--loss-red);
    color: white;
}

.final-score {
    font-size: 28px;
    font-weight: 800;
    color: var(--predators-navy);
}

.game-time-large {
    font-size: 28px;
    font-weight: 800;
    color: var(--predators-navy);
}

.venue-name {
    font-size: 13px;
    color: #6b7280;
    margin-top: 4px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
}

.broadcast-info {
    font-size: 12px;
    color: #6b7280;
}

.game-thread-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--predators-gold);
}

/* Game List Rows */
.game-list {
    background: white;
}

.game-row {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.15s ease;
}

.game-row:hover {
    background: #f8f9fa;
}

.game-row:last-child {
    border-bottom: none;
}

.row-date {
    min-width: 90px;
}

.row-date .date-main {
    font-size: 13px;
    font-weight: 600;
    color: var(--predators-navy);
}

.row-matchup {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.row-matchup .location-indicator {
    font-size: 10px;
    font-weight: 700;
    min-width: 44px;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
}

.row-matchup .location-indicator.home {
    background: var(--predators-gold);
    color: var(--predators-navy);
}

.row-matchup .location-indicator.away {
    background: var(--predators-navy);
    color: white;
}

.row-matchup .row-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.row-matchup .opponent-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--predators-navy);
}

.row-time {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    min-width: 70px;
    text-align: right;
}

.row-result {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 90px;
    justify-content: flex-end;
}

.result-badge {
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
}

.row-result.win .result-badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--win-green);
}

.row-result.loss .result-badge {
    background: rgba(239, 68, 68, 0.15);
    color: var(--loss-red);
}

.result-score {
    font-size: 14px;
    font-weight: 700;
    color: var(--predators-navy);
}

.row-arrow {
    font-size: 20px;
    color: #9ca3af;
    margin-left: 8px;
}

/* ============================================
   ADD TO CALENDAR BUTTON
   ============================================ */

.add-game-cal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 184, 28, 0.15);
    color: var(--predators-navy);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.add-game-cal-btn:hover {
    background: var(--predators-gold);
    color: var(--predators-navy);
    transform: scale(1.1);
}

.add-game-cal-btn:active {
    transform: scale(0.95);
}

.today-card .add-game-cal-btn {
    margin-left: 0;
}

@media (max-width: 480px) {
    .add-game-cal-btn {
        width: 32px;
        height: 32px;
    }

    .add-game-cal-btn svg {
        width: 14px;
        height: 14px;
    }
}

/* No Games Message */
.no-games-message {
    text-align: center;
    padding: 48px 20px;
    color: #6b7280;
    background: white;
}

/* Responsive Adjustments for List View */
@media (max-width: 480px) {
    .view-toggle-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .view-toggle-btn span {
        display: none;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .section-header {
        padding: 12px 16px;
    }

    .section-header h2 {
        font-size: 14px;
    }

    .game-cards {
        padding: 12px;
    }

    .today-card {
        padding: 16px;
    }

    .card-matchup {
        gap: 16px;
    }

    .card-matchup .team-logo {
        width: 44px;
        height: 44px;
    }

    .card-matchup .team-name {
        font-size: 14px;
    }

    .live-score,
    .final-score,
    .game-time-large {
        font-size: 24px;
    }

    .game-row {
        padding: 12px;
    }

    .row-date {
        min-width: 70px;
    }

    .row-date .date-main {
        font-size: 12px;
    }

    .row-matchup .row-logo {
        width: 24px;
        height: 24px;
    }

    .row-matchup .opponent-name {
        font-size: 13px;
    }

    .row-time {
        font-size: 12px;
        min-width: 60px;
    }

    .row-result {
        min-width: 80px;
    }

    .result-score {
        font-size: 13px;
    }
}

/* Desktop List View Enhancements */
@media (min-width: 769px) {
    .list-section {
        max-width: 800px;
        margin: 0 auto 24px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .list-section:first-of-type {
        margin-top: 24px;
    }

    .game-cards {
        padding: 24px;
    }

    .today-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .game-row {
        padding: 16px 24px;
    }
}
