    /* Page background color like refactored version */
    body {
        background-color: #f5f5f7 !important;
    }
    
    /* Anchor offset for fixed navbar */
    article.card[id^="item-"] {
        scroll-margin-top: 150px;
        transition: scroll-margin-top 0.3s ease;
    }
    
    /* Increase offset when banner is visible */
    body.has-announcement-banner article.card[id^="item-"] {
        scroll-margin-top: 195px; /* 150px + ~45px for banner */
    }
    
    .filter-section {
        background: #fff9e6;
        border-radius: 8px;
        padding: 15px 20px;
        margin-bottom: 2rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        cursor: pointer;
        transition: background-color 0.2s ease;
    }
    
    .filter-section:hover {
        background-color: rgba(0, 0, 0, 0.02);
    }
    
    .filter-group {
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    /* Mobile filter layout improvements */
    @media (max-width: 767px) {
        .filter-section {
            padding: 1rem !important;
        }
        
        .filter-group {
            flex-direction: column;
            gap: 1rem;
            width: 100%;
        }
        
        .filter-select {
            width: 100%;
            max-width: none;
        }
        
        .or-divider {
            display: none; /* Hide OR on mobile since it's vertical */
        }
        
        .tracked-items-toggle,
        .new-items-toggle {
            width: 100%;
            margin-left: 0 !important;
            margin-top: 1rem;
            padding-top: 0;
            border-top: none;
        }
        
        .tracked-items-toggle .form-check {
            margin-left: 0;
            padding-left: 0;
        }
        
        .tracked-items-toggle .btn-toggle {
            justify-content: flex-start;
            padding: 0 !important; /* Override component styles */
            padding-left: 0 !important;
            background: transparent;
            border-radius: 0;
            border: none;
            text-align: left;
            width: auto !important;
        }
        
        /* Ensure the entire toggle component is left-aligned */
        .filter-section .tracked-items-toggle {
            text-align: left;
            display: flex;
            justify-content: flex-start;
        }
        
        /* Make sure the overlay covers the toggle properly */
        .tracked-items-toggle.pro-feature-container {
            position: relative;
        }
        
        .tracked-items-toggle .pro-feature-overlay {
            border-radius: 8px;
        }
        
        .tracked-count {
            margin-left: auto;
        }
    }
    
    .filter-group * {
        pointer-events: auto;
    }
    
    .filter-select {
        position: relative;
        flex: 1;
        cursor: pointer;
    }
    
    .filter-select select {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: white;
        font-size: 14px;
        cursor: pointer;
    }
    
    /* Better mobile select styling */
    @media (max-width: 767px) {
        .filter-select select {
            padding: 12px 16px;
            font-size: 16px; /* Prevent zoom on iOS */
            background-size: 20px;
            background-position: right 12px center;
        }
    }
    
    .or-divider {
        font-weight: bold;
        color: #666;
        margin: 0 10px;
    }
    
    .tracked-items-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-left: auto;
    }

    .new-items-toggle {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        margin-left: 1rem;
    }
    
    .tracked-count {
        background: #4169E1;
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 13px;
    }
    
    .pro-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: #FFD700 !important; /* Gold color to match app.css */
        color: #000000 !important;
        padding: 2px 6px;
        border-radius: 4px;
        font-size: 0.75rem;
        font-weight: 700;
        text-shadow: none;
    }
    
    /* Better PRO badge positioning on mobile */
    @media (max-width: 767px) {
        .filter-select .pro-badge {
            top: 50%;
            right: 40px;
            transform: translateY(-50%);
        }
        
        .tracked-items-toggle .pro-badge,
        .new-items-toggle .pro-badge {
            top: 50%;
            right: 10px;
            transform: translateY(-50%);
        }
    }
    
    .pro-feature-container {
        position: relative;
    }
    
    .pro-feature-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        cursor: pointer;
        z-index: 10;
    }
    
    /* Container adjustments */
    .container {
        max-width: 1400px !important;
        width: 95%;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    /* Remove container padding for cards sections to match header width */
    .container.cards-container {
        padding: 0 !important;
        width: 100% !important;
        max-width: 1400px !important;
    }
    
    /* Make header container match cards container for proper alignment */
    .agenda-section-header-wrapper .container {
        max-width: 1400px !important; /* Same as cards container */
        padding: 0 15px !important;
    }
    
    /* Tracked items toggle styles */
    .btn-toggle {
        background: none;
        border: none;
        padding: 0.375rem 0.75rem;
        display: flex;
        align-items: center;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }
    
    .btn-toggle:disabled {
        opacity: 0.65;
        cursor: not-allowed;
    }
    
    .btn-toggle .toggle-icon {
        font-size: 1.25rem;
        transition: transform 0.2s;
    }
    
    .btn-toggle.active .toggle-icon {
        transform: rotate(180deg);
    }
    
    .btn-toggle:hover:not(:disabled) {
        background-color: rgba(0,0,0,0.05);
    }
    
    /* Navbar injection styles for wide screens */
    .agenda-navbar-section {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        flex: 1;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        padding: 0.25rem 0;
        flex-wrap: nowrap;
    }
    
    .agenda-navbar-section > * {
        flex-shrink: 0;
    }
    
    .agenda-navbar-title {
        font-size: 0.85rem;
        color: #495057;
        white-space: nowrap;
        margin: 0;
        padding: 0.25rem 0.75rem;
        background: rgba(108, 117, 125, 0.1);
        border-radius: 20px;
        border: 1px solid rgba(108, 117, 125, 0.2);
        font-weight: 500;
        flex-shrink: 0;
    }
    
    .agenda-navbar-filters {
        display: flex !important;
        align-items: center;
        gap: 0.75rem;
        background: rgba(248, 249, 250, 0.8);
        padding: 0.5rem 1rem;
        border-radius: 25px;
        border: 1px solid rgba(206, 212, 218, 0.5);
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        flex-shrink: 0;
    }
    
    .filter-controls {
        display: flex !important;
        gap: 0.75rem;
        align-items: center;
    }
    
    .agenda-navbar-filters .filter-select {
        position: relative;
        min-width: 80px;
        max-width: 120px;
    }
    
    .agenda-navbar-filters .filter-select select {
        padding: 0.2rem 0.5rem;
        padding-right: 1.5rem;
        font-size: 0.7rem;
        height: 26px;
        border: 1px solid rgba(206, 212, 218, 0.8);
        border-radius: 6px;
        background: white;
        transition: all 0.2s ease;
        font-weight: 500;
        width: 100%;
        text-overflow: ellipsis;
    }
    
    .agenda-navbar-filters .pro-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        font-size: 0.45rem;
        padding: 1px 3px;
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        color: white;
        border-radius: 6px;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        box-shadow: 0 2px 4px rgba(0,0,0,0.15);
        z-index: 1;
    }
    
    .navbar-actions {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        flex-shrink: 0;
    }
    
    .tracked-toggle-container {
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .tracked-toggle-switch {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        cursor: pointer;
        margin: 0;
        font-size: 0.7rem;
        font-weight: 500;
        color: #6c757d;
        transition: color 0.2s ease;
        white-space: nowrap;
    }
    
    .tracked-toggle-switch:hover {
        color: #495057;
    }
    
    .tracked-toggle-switch .toggle-text {
        display: none; /* Hide text on smaller screens */
    }
    
    @media (min-width: 1400px) {
        .tracked-toggle-switch .toggle-text {
            display: inline; /* Show text on larger screens */
        }
    }
    
    .toggle-slider {
        position: relative;
        width: 32px;
        height: 16px;
        background: #dee2e6;
        border-radius: 16px;
        transition: all 0.3s ease;
        border: 1px solid #adb5bd;
        flex-shrink: 0;
    }
    
    .toggle-slider::before {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .tracked-toggle-switch input[type="checkbox"] {
        display: none;
    }
    
    .tracked-toggle-switch input[type="checkbox"]:checked + .toggle-slider {
        background: linear-gradient(135deg, #0d6efd, #6610f2);
        border-color: #0d6efd;
    }
    
    .tracked-toggle-switch input[type="checkbox"]:checked + .toggle-slider::before {
        transform: translateX(16px);
    }
    
    /* Hide navbar section on mobile */
    @media (max-width: 991px) {
        .agenda-navbar-section {
            display: none !important;
        }
    }
    
    /* Show meeting header on all screens now */
    .meeting-header {
        display: block !important;
    }
    
    /* Show filter section on all screens */
    .filter-section {
        display: block !important;
    }
    
    /* Adjust navbar height when filters are present */
    @media (min-width: 992px) {
        body:has(.agenda-navbar-section) .navbar,
        body:has(.agenda-navbar-section) #vue-navigation .navbar {
            padding: 0.5rem 0 !important;
            min-height: 70px !important;
            max-height: 70px !important;
        }
        
        body:has(.agenda-navbar-section) {
            padding-top: 70px !important;
        }
        
        /* Ensure navbar content is vertically centered */
        #vue-navigation .navbar .container,
        .navbar .container {
            display: flex;
            align-items: center;
            min-height: auto !important;
            height: auto !important;
        }
    }
    
    /* Adjust navbar layout for different screen sizes */
    @media (min-width: 992px) and (max-width: 1199px) {
        .agenda-navbar-section {
            gap: 0.75rem;
        }
        
        .agenda-navbar-filters {
            padding: 0.4rem 0.75rem;
            gap: 0.5rem;
        }
        
        .filter-controls {
            gap: 0.5rem;
        }
    }
    
    /* Extra compact layout for smaller desktop screens */
    @media (min-width: 992px) and (max-width: 1100px) {
        .agenda-navbar-title {
            font-size: 0.75rem;
            padding: 0.2rem 0.5rem;
        }
        
        .agenda-navbar-filters .filter-select {
            min-width: 70px;
            max-width: 100px;
        }
        
        .agenda-navbar-filters .filter-select select {
            font-size: 0.65rem;
            padding: 0.15rem 0.4rem;
            padding-right: 1.2rem;
        }
    }
    
    @media (min-width: 1200px) {
        .container {
            width: 90%;
        }
    }
    
    /* Sticky section header wrapper - full width container */
    .agenda-section-header-wrapper {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 70px !important; /* Default position below navbar */
        z-index: 1020 !important; /* Higher than cards but below navbar and banner */
        width: 100% !important;
        background: white !important; /* Solid background to cover content behind */
        /* Ensure no transforms or other properties that break sticky */
        transform: none !important;
        contain: none !important;
        will-change: auto !important;
        margin-bottom: 0 !important;
        padding: 10px 0 !important; /* Add padding to ensure coverage */
        transition: top 0.3s ease; /* Smooth transition when banner is dismissed */
    }
    
    /* Adjust sticky position when announcement banner is visible */
    .agenda-section-header-wrapper.with-banner {
        top: 120px !important; /* Account for navbar (70px) + banner (~50px) */
    }
    
    /* Desktop screens might need more space */
    @media (min-width: 768px) {
        .agenda-section-header-wrapper.with-banner {
            top: 125px !important; /* Account for navbar (70px) + banner (~55px) on desktop */
        }
    }
    
    /* Section headers inside the sticky wrapper */
    .agenda-section-header {
        width: calc(100% + 80px); /* Extend 40px on each side */
        margin-left: -40px !important;
        margin-right: -40px !important;
        padding: 1rem 40px !important;
        font-family: 'Recoleta-Regular', sans-serif !important;
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        /* Remove sticky from the header itself - wrapper handles it */
        position: relative !important;
        /* Background color is set inline */
    }
    
    /* Ensure parent containers don't interfere with sticky positioning */
    .container, .container-fluid {
        overflow: visible !important;
        height: auto !important;
        /* Remove any transforms that break sticky */
        transform: none !important;
        contain: none !important;
    }
    
    /* Ensure the main content area doesn't interfere */
    #agenda-content {
        overflow: visible !important;
        height: auto !important;
        transform: none !important;
        contain: none !important;
    }
    
    /* Ensure body and html don't interfere */
    body, html {
        overflow-x: visible !important;
        transform: none !important;
        contain: none !important;
    }
    
    
    /* Card layout using flexbox (like working refactored view) */
    section.cards.agenda-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-bottom: 2rem;
        width: 100% !important;
        max-width: none !important;
        margin-left: -0.5rem;
        margin-right: -0.5rem;
        padding: 1rem;
        /* Background color is set inline per section */
    }
    
    /* Ensure inline styles take precedence for section backgrounds */
    section.cards[style*="background-color"] {
        /* This selector ensures inline background-color styles are respected */
    }
    
    /* Remove container background - sections handle their own backgrounds */
    .cards-container {
        background: transparent;
        padding: 0;
    }
    
    /* Card styles - let mb-agenda.css handle transparent background */
    section.cards.agenda-grid > .card,
    .agenda-grid > .card,
    .cards > .card,
    article.card {
        box-sizing: border-box;
        margin: 0.5rem !important;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        /* Let cards be transparent to show section background */
        background-color: transparent !important;
        flex: 0 0 auto !important;
        border: none !important; /* Override any borders */
    }
    
    /* Large Desktop: 4 cards per row */
    @media screen and (min-width: 1200px) {
        section.cards.agenda-grid > .card,
        .agenda-grid > .card {
            width: calc(25% - 1rem) !important;
            max-width: calc(25% - 1rem) !important;
            min-width: calc(25% - 1rem) !important;
            flex: 0 0 calc(25% - 1rem) !important;
            flex-basis: calc(25% - 1rem) !important;
            flex-grow: 0 !important;
            flex-shrink: 0 !important;
        }
    }
    
    /* Desktop: 3 cards per row */
    @media screen and (min-width: 992px) and (max-width: 1199px) {
        section.cards.agenda-grid > .card,
        .agenda-grid > .card {
            width: calc(33.333% - 1rem) !important;
            max-width: calc(33.333% - 1rem) !important;
            flex: 0 0 calc(33.333% - 1rem) !important;
        }
    }
    
    /* Tablet: 2 cards per row */
    @media screen and (min-width: 576px) and (max-width: 991px) {
        section.cards.agenda-grid > .card,
        .agenda-grid > .card {
            width: calc(50% - 1rem) !important;
            max-width: calc(50% - 1rem) !important;
            flex: 0 0 calc(50% - 1rem) !important;
        }
    }
    
    /* Mobile: Full width cards */
    @media screen and (max-width: 575px) {
        .container {
            width: 100%;
            padding: 0 15px;
        }
        
        section.cards.agenda-grid,
        .agenda-grid {
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 0 !important;
            width: 100% !important;
        }
        
        section.cards.agenda-grid > .card,
        .agenda-grid > .card {
            width: 100% !important;
            max-width: 100% !important;
            min-width: 100% !important;
            flex: 0 0 100% !important;
            flex-basis: 100% !important;
            flex-grow: 0 !important;
            flex-shrink: 0 !important;
            margin: 0 !important;
            margin-bottom: 1rem !important;
            border-radius: 0 !important;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .agenda-section-header-wrapper:not(.with-banner) {
            top: 60px !important; /* Smaller navbar on mobile */
        }
        
        .agenda-section-header {
            width: 100%; /* Reset to full width on mobile */
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 1rem !important;
            border-radius: 0;
        }
    }
    
    /* Adjust sticky top position based on navbar presence */
    @media (min-width: 992px) {
        body:has(.agenda-navbar-section) .agenda-section-header-wrapper:not(.with-banner) {
            top: 70px !important; /* Full height when navbar has filters */
        }
        
        body:not(:has(.agenda-navbar-section)) .agenda-section-header-wrapper:not(.with-banner) {
            top: 56px !important; /* Standard navbar height */
        }
        
        /* When banner is visible on large screens */
        .agenda-section-header-wrapper.with-banner {
            /* This will be set dynamically by JavaScript */
        }
    }
