/* ============================================================
           BASE STYLES - Beckland portal architecture with FM branding

           IMPORTANT:
           Portal styles are scoped so they do NOT interfere with
           top-bar.php or footer.php.
        ============================================================ */

        :root {
            --pink: #D96A8A;
            --pink-dark: #C45A7A;
            --pink-light: #F8E4EE;
            --pink-rgb: 217, 106, 138;

            --rose-gold: #D98C6B;
            --rose-gold-rgb: 217, 140, 107;

            --black: #120F10;
            --white: #FFFFFF;

            --gray-100: #faf9fc;
            --gray-200: #f0eaf5;
            --gray-300: #ddd8e6;
            --gray-400: #b0b0b0;
            --gray-500: #888888;
            --gray-600: #666666;
            --gray-700: #555555;
            --gray-800: #2d2d2d;
            --gray-900: #1e1e1e;

            --shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.10);

            --radius: 20px;
            --radius-sm: 12px;
            --transition: 0.25s ease;

            --font-family: 'Inter', 'Segoe UI', Roboto, system-ui, sans-serif;
            --font-heading: 'Playfair Display', serif;

            --green: #28a745;
            --green-bg: #d4edda;
            --red: #dc3545;
            --red-bg: #f8d7da;
            --blue: #007bff;
            --blue-bg: #cce5ff;
            --gold: #D98C6B;
        }


        /* ============================================================
           PAGE
        ============================================================ */

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background-color: var(--gray-100);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }


        /* ============================================================
           PORTAL ISOLATION

           Never apply the Beckland reset to top-bar.php/footer.php.
        ============================================================ */

        .hero-banner,
        .main-content {
            font-family: var(--font-family);
            line-height: 1.6;
        }

        .hero-banner *,
        .main-content *,
        .hero-banner *::before,
        .hero-banner *::after,
        .main-content *::before,
        .main-content *::after {
            box-sizing: border-box;
        }


        /* ============================================================
           PORTAL LINKS / IMAGES
        ============================================================ */

        .hero-banner a,
        .main-content a {
            text-decoration: none;
            color: inherit;
            transition: color var(--transition);
        }

        .hero-banner img,
        .main-content img {
            max-width: 100%;
            height: auto;
            display: block;
        }


        /* ============================================================
           PORTAL CONTAINERS

           IMPORTANT:
           This deliberately does NOT target every .container.
        ============================================================ */

        .hero-banner > .container,
        .main-content > .container {
            width: 100%;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 12px;
            padding-right: 12px;
        }


        /* ============================================================
           HERO BANNER - LEFT ALIGNED (matching Beckland style)
        ============================================================ */
        .hero-banner {
            position: relative;
            padding: 0;
            margin-bottom: 32px;
            border-radius: 0;
            overflow: hidden;
            min-height: 220px;
            display: flex;
            align-items: center;
            background: var(--black);
        }

        .hero-banner .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(18, 15, 16, 0.88) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(217, 106, 138, 0.65) 100%);
            z-index: 1;
        }

        .hero-banner .hero-overlay + .container {
            position: relative;
            z-index: 2;
            padding: 32px 12px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 100%;
        }

        .hero-banner .hero-text {
            flex: 1;
            min-width: 200px;
            max-width: 700px;
            color: var(--white);
            text-align: left;
        }

        .hero-banner .hero-text .badge {
            display: inline-block;
            background: rgba(217, 106, 138, 0.2);
            border: 1px solid rgba(217, 106, 138, 0.3);
            padding: 4px 14px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 500;
            color: #F8F1EC;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .hero-banner .hero-text h1 {
            font-family: var(--font-heading);
            font-size: clamp(1.6rem, 4vw, 3.2rem);
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.2;
        }

        .hero-banner .hero-text h1 span {
            color: var(--rose-gold);
        }

        .hero-banner .hero-text p {
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 540px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* ============================================================
           MAIN CONTENT - Light background, wide container
        ============================================================ */
        .main-content {
            flex: 1;
            padding: 0 0 40px 0;
            background: var(--gray-100);
        }

        /* ============================================================
           PORTAL OUTER SHELL
           Wraps the complete appointment management area
        ============================================================ */

        .portal-outer-shell {
            padding: 12px;
            background: rgba(255, 255, 255, 0.32);
            border: 1px solid rgba(217, 106, 138, 0.22);
            border-radius: 16px;
            box-shadow: 0 10px 35px rgba(18, 15, 16, 0.035);
            margin-bottom: 28px;
        }

        /* ============================================================
           APPOINTMENT PORTAL - LOGGED-IN VIEW
        ============================================================ */

        /* Creates breathing room below the navigation when the hero is not displayed */
        .main-content.portal-active {
            padding-top: 24px;
        }

        /* Main introduction/header */
        .portal-intro {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 18px;
            padding: 18px 18px;
            background: linear-gradient(
                135deg,
                rgba(217, 106, 138, 0.08),
                rgba(217, 140, 107, 0.06)
            );
            border: 1px solid rgba(217, 106, 138, 0.18);
            border-radius: var(--radius-sm);
        }

        .portal-intro-content {
            max-width: 760px;
        }

        .portal-intro-label {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 4px;
            color: var(--pink);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
        }

        .portal-intro h1 {
            margin: 0 0 4px;
            font-family: var(--font-heading);
            font-size: clamp(1.4rem, 2.8vw, 2.2rem);
            font-weight: 700;
            color: var(--black);
        }

        .portal-intro p {
            margin: 0;
            max-width: 720px;
            color: var(--gray-600);
            font-size: 0.88rem;
            line-height: 1.6;
        }

        /* Return / Logout button */
        .btn-portal-logout {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 9px 18px;
            background: var(--white);
            color: var(--pink);
            border: 1px solid var(--pink);
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 700;
            text-decoration: none;
            transition: all var(--transition);
            white-space: nowrap;
        }

        .btn-portal-logout:hover {
            background: var(--pink);
            color: var(--white);
            transform: translateY(-1px);
        }

        /* ============================================================
           APPOINTMENT CONTENT SHELL
        ============================================================ */

        .appointment-portal-shell {
            padding: 14px;
            background: rgba(255, 255, 255, 0.45);
            border: 1px solid var(--gray-300);
            border-radius: var(--radius-sm);
            box-shadow: 0 8px 30px rgba(18, 15, 16, 0.04);
        }

        /* Give the cards a little more visual separation */
        .appointment-portal-shell .dash-card {
            border: 1px solid rgba(217, 106, 138, 0.13);
        }

        /* Alternate subtle contrast for full-width cards */
        .appointment-portal-shell .dash-card.full-width {
            background: rgba(248, 228, 238, 0.22);
        }

        /* ============================================================
           SECTION CONTRAST - Subtle visual organization
        ============================================================ */

        /* Appointment overview */
        .dashboard-grid .dash-card:nth-child(1) {
            border-top: 3px solid rgba(217, 106, 138, 0.55);
        }

        /* Customer information */
        .dashboard-grid .dash-card:nth-child(2) {
            border-top: 3px solid rgba(217, 140, 107, 0.55);
        }

        /* Service */
        .dashboard-grid .dash-card:nth-child(3) {
            background: rgba(248, 228, 238, 0.28);
        }

        /* Payment */
        .dashboard-grid .dash-card:nth-child(4) {
            background: rgba(217, 140, 107, 0.045);
        }

        /* Instructions */
        .dashboard-grid .dash-card:nth-child(5) {
            background: rgba(217, 106, 138, 0.045);
        }


        /* ============================================================
           SEARCH PANEL
        ============================================================ */
        .search-section {
            margin-bottom: 28px;
        }

        .search-card {
            background: var(--white);
            border-radius: var(--radius-sm);
            padding: 20px 16px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow);
        }

        .search-card .search-title {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .search-card .search-title i {
            color: var(--pink);
        }

        /* Default display: flex.
           When a search result exists, PHP should omit rendering this form
           (or add a modifier class like .is-hidden if you prefer to keep the markup). */
        .search-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: flex-end;
        }

        .search-form .form-group {
            flex: 1;
            min-width: 160px;
        }

        .search-form .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 3px;
        }

        .search-form .form-group input {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius-sm);
            font-size: 0.9rem;
            font-family: var(--font-family);
            transition: border-color var(--transition);
            background: var(--gray-100);
        }

        .search-form .form-group input:focus {
            outline: none;
            border-color: var(--pink);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(217, 106, 138, 0.1);
        }

        .search-form .form-group .hint {
            font-size: 0.7rem;
            color: var(--gray-500);
            margin-top: 2px;
        }

        .btn-search {
            background: var(--pink);
            color: var(--white);
            padding: 8px 24px;
            border: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            min-width: 120px;
            justify-content: center;
            height: 42px;
        }

        .btn-search:hover {
            background: var(--pink-dark);
            transform: scale(1.02);
        }

        /* ============================================================
           SEARCH ERROR
           Rendered conditionally by PHP — no display toggling in CSS.
        ============================================================ */
        .search-error {
            margin-top: 10px;
            padding: 10px 14px;
            background: var(--red-bg);
            border-left: 4px solid var(--red);
            border-radius: var(--radius-sm);
            color: var(--red);
            font-size: 0.9rem;
        }

        .search-error i {
            margin-right: 6px;
        }

        /* ============================================================
           SEARCH PAGE CONTACT HELP - WITH BORDER
        ============================================================ */
        .search-help-section {
            margin-top: 20px;
            margin-bottom: 28px;
            padding: 18px 14px;
            background: rgba(255, 255, 255, 0.32);
            border: 1px solid rgba(217, 106, 138, 0.22);
            border-radius: 16px;
            box-shadow: 0 8px 28px rgba(18, 15, 16, 0.035);
        }

        .search-help-section h3 {
            margin-top: 0;
            margin-bottom: 14px;
            font-size: 1.1rem;
        }

        /* ============================================================
           SEARCH SUCCESS
           Rendered conditionally by PHP — no display toggling in CSS.
        ============================================================ */
        .search-success {
            padding: 12px 16px;
            background: var(--green-bg);
            border-left: 4px solid var(--green);
            border-radius: var(--radius-sm);
            color: #155724;
            margin-bottom: 12px;
            font-size: 0.9rem;
        }

        .search-success i {
            margin-right: 8px;
            color: var(--green);
        }

        .search-success .btn-new-search {
            background: transparent;
            border: none;
            color: var(--pink);
            font-weight: 600;
            text-decoration: underline;
            cursor: pointer;
            padding: 0;
            font-size: 0.9rem;
        }

        .search-success .btn-new-search:hover {
            color: var(--pink-dark);
        }

        /* ============================================================
           DASHBOARD - Wide, light, card-based
        ============================================================ */
        .dashboard {
            animation: fadeIn 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(12px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }

        .dashboard-header h2 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin: 0;
        }

        .dashboard-header .status-badge {
            padding: 3px 14px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .status-badge.approved {
            background: var(--green-bg);
            color: var(--green);
        }
        .status-badge.pending {
            background: rgba(217, 140, 107, 0.15);
            color: var(--rose-gold);
        }
        .status-badge.cancelled {
            background: var(--red-bg);
            color: var(--red);
        }
        .status-badge.completed {
            background: var(--blue-bg);
            color: var(--blue);
        }

        /* ============================================================
           DASHBOARD GRID
        ============================================================ */
        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
            margin-bottom: 18px;
        }

        .dash-card {
            background: var(--white);
            border-radius: var(--radius-sm);
            padding: 14px 16px;
            border: 1px solid var(--gray-200);
            box-shadow: var(--shadow);
        }

        .dash-card.full-width {
            grid-column: 1 / -1;
        }

        .dash-card .card-label {
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--gray-500);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .dash-card .card-label i {
            color: var(--pink);
        }

        .dash-card .card-value {
            font-size: 0.88rem;
            color: var(--gray-800);
        }

        .dash-card .card-value strong {
            color: var(--black);
        }

        .dash-card .card-value .sub {
            font-size: 0.8rem;
            color: var(--gray-500);
            display: block;
        }

        .dash-card .card-value .confirmation-number {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--rose-gold);
            letter-spacing: 0.5px;
            background: rgba(217, 140, 107, 0.08);
            padding: 0.1rem 0.6rem;
            border-radius: 4px;
            display: inline-block;
        }

        /* Special Instructions */
        .special-instructions-box {
            background: rgba(217, 140, 107, 0.05);
            border-left: 3px solid var(--rose-gold);
            padding: 0.5rem 0.8rem;
            border-radius: 0 6px 6px 0;
            margin-top: 0.1rem;
        }
        .special-instructions-box p {
            font-size: 0.85rem;
            color: var(--gray-600);
            margin: 0;
            font-style: italic;
        }

        /* Timeline */
        .timeline {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 12px;
        }

        .timeline .step {
            display: flex;
            align-items: center;
            gap: 4px;
            font-size: 0.8rem;
            color: var(--gray-600);
        }

        .timeline .step i {
            font-size: 0.8rem;
        }

        .timeline .step.completed i {
            color: var(--green);
        }

        .timeline .step.pending i {
            color: var(--gray-400);
        }

        /* ============================================================
           IMPORTANT INFORMATION
        ============================================================ */
        .important-info {
            background: var(--white);
            border-left: 4px solid var(--pink);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
            box-shadow: var(--shadow);
            margin-bottom: 18px;
        }

        .important-info h4 {
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--black);
            display: flex;
            align-items: center;
            gap: 6px;
            margin: 0 0 4px 0;
        }

        .important-info h4 i {
            color: var(--pink);
        }

        .important-info ul {
            margin: 4px 0 0 16px;
            padding: 0;
        }

        .important-info ul li {
            font-size: 0.84rem;
            color: var(--gray-600);
            margin-bottom: 2px;
        }

        /* ============================================================
           MANAGEMENT BUTTONS
        ============================================================ */
        .management-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 28px;
        }

        .btn-modify {
            background: var(--pink);
            color: var(--white);
            padding: 10px 28px;
            border: none;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), transform var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-modify:hover {
            background: var(--pink-dark);
            transform: scale(1.02);
        }

        .btn-cancel {
            background: transparent;
            color: var(--pink);
            padding: 10px 28px;
            border: 2px solid var(--pink);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: background var(--transition), color var(--transition), transform var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-cancel:hover {
            background: var(--pink);
            color: var(--white);
            transform: scale(1.02);
        }

        /* ============================================================
           HELP SECTION
        ============================================================ */
        .help-section {
            margin-top: 14px;
        }

        .help-section h3 {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 12px;
            color: var(--gray-800);
        }

        .help-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .help-item {
            background: var(--white);
            padding: 14px 12px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--gray-200);
            text-align: center;
            transition: transform var(--transition), box-shadow var(--transition);
        }

        .help-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }

        .help-item i {
            font-size: 1.4rem;
            color: var(--pink);
            margin-bottom: 4px;
        }

        /* WhatsApp brand color - GREEN */
        .help-item .fa-whatsapp {
            color: #25D366;
        }

        .help-item h4 {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--gray-700);
            margin-bottom: 2px;
        }

        .help-item p {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gray-800);
            margin: 0;
        }

        .help-item a {
            color: var(--gray-800);
            text-decoration: none;
        }
        .help-item a:hover {
            color: var(--pink);
        }

        /* ============================================================
           PREFERRED COMMUNICATION ICONS - GREEN WHATSAPP
        ============================================================ */

        .preferred-communication {
            display: flex !important;
            align-items: center;
            gap: 4px;
        }

        .preferred-communication .whatsapp-icon {
            color: #25D366;
            font-size: 0.85rem;
        }

        .preferred-communication .communication-icon {
            color: var(--pink);
            font-size: 0.7rem;
        }


        /* ============================================================
           SYSTEM INFO - Collapsible
        ============================================================ */
        .system-info-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--gray-500);
            font-size: 0.75rem;
            font-weight: 600;
            user-select: none;
            padding: 0.4rem 0;
            border-top: 1px solid var(--gray-200);
            margin-top: 0.4rem;
            width: fit-content;
        }

        .system-info-toggle i {
            transition: transform 0.3s ease;
            font-size: 0.65rem;
        }

        .system-info-toggle.open i {
            transform: rotate(180deg);
        }

        .system-info-content {
            display: none;
            padding: 0.5rem 0;
            font-size: 0.8rem;
            color: var(--gray-500);
            line-height: 1.8;
        }

        .system-info-content.open {
            display: block;
        }

        .system-info-content strong {
            color: var(--gray-700);
            font-weight: 600;
        }

        /* ============================================================
           RESPONSIVE
        ============================================================ */
        @media (max-width: 992px) {
            .hero-banner .hero-overlay + .container {
                justify-content: center;
                text-align: center;
            }

            .hero-banner .hero-text {
                text-align: center;
                max-width: 100%;
            }

            .hero-banner .hero-text p {
                max-width: 100%;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            /* Reduce all padding to bare minimum */
            .hero-banner {
                min-height: 160px;
                margin-bottom: 16px;
            }

            .hero-banner .hero-overlay + .container {
                padding: 20px 10px;
            }

            .hero-banner .hero-text h1 {
                font-size: 1.5rem;
            }
            
            .hero-banner .hero-text p {
                font-size: 0.85rem;
            }

            .main-content.portal-active {
                padding-top: 12px;
            }

            .main-content > .container {
                padding-left: 6px;
                padding-right: 6px;
            }

            .portal-outer-shell {
                padding: 6px;
                border-radius: 12px;
                margin-bottom: 16px;
            }

            .portal-intro {
                flex-direction: column;
                align-items: flex-start;
                padding: 14px 12px;
                gap: 12px;
            }

            .btn-portal-logout {
                width: 100%;
                justify-content: center;
                padding: 8px 14px;
                font-size: 0.8rem;
            }

            .appointment-portal-shell {
                padding: 8px;
                border-radius: var(--radius-sm);
            }

            .search-card {
                padding: 14px 10px;
            }

            .search-form {
                flex-direction: column;
                gap: 8px;
            }

            .search-form .form-group {
                min-width: 100%;
            }

            .btn-search {
                width: 100%;
                height: 38px;
                font-size: 0.85rem;
            }

            .dashboard-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .dash-card.full-width {
                grid-column: 1;
            }

            .dash-card {
                padding: 10px 12px;
            }

            .dashboard-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }

            .dashboard-header h2 {
                font-size: 1rem;
            }

            .management-buttons {
                flex-direction: column;
                gap: 8px;
            }

            .management-buttons .btn-modify,
            .management-buttons .btn-cancel {
                width: 100%;
                justify-content: center;
                padding: 8px 16px;
                font-size: 0.85rem;
            }

            .help-grid {
                grid-template-columns: 1fr 1fr;
                gap: 8px;
            }

            .help-item {
                padding: 10px 8px;
            }
            
            .help-item i {
                font-size: 1.2rem;
            }
            
            .help-item h4 {
                font-size: 0.75rem;
            }
            
            .help-item p {
                font-size: 0.8rem;
            }

            .search-help-section {
                padding: 12px 10px;
                margin-top: 12px;
                margin-bottom: 16px;
            }
            
            .search-help-section h3 {
                font-size: 0.95rem;
            }

            .important-info {
                padding: 10px 12px;
                margin-bottom: 12px;
            }
            
            .important-info h4 {
                font-size: 0.82rem;
            }
            
            .important-info ul li {
                font-size: 0.8rem;
            }
            
            .portal-intro h1 {
                font-size: 1.3rem;
            }
            
            .portal-intro p {
                font-size: 0.82rem;
            }
        }

        @media (max-width: 480px) {
            .hero-banner .hero-text h1 {
                font-size: 1.3rem;
            }
            
            .hero-banner .hero-text .badge {
                font-size: 0.6rem;
                padding: 3px 10px;
            }

            .main-content > .container {
                padding-left: 4px;
                padding-right: 4px;
            }
            
            .portal-outer-shell {
                padding: 4px;
            }
            
            .appointment-portal-shell {
                padding: 6px;
            }
            
            .dash-card {
                padding: 8px 10px;
            }
            
            .dash-card .card-value {
                font-size: 0.82rem;
            }
            
            .dash-card .card-value .sub {
                font-size: 0.75rem;
            }
            
            .help-grid {
                grid-template-columns: 1fr;
            }
            
            .dashboard-header h2 {
                font-size: 0.95rem;
            }
        }
        
        /* GLOSSINESS - Enhanced portal styling */
        .main-content {
            background: linear-gradient(135deg, #faf9fc 0%, #f0eaf5 100%);
        }

        .dash-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }