        /* --- Navbar & Scrollbar --- */
        .offcanvas-body::-webkit-scrollbar { display: none; }
        .offcanvas-body { -ms-overflow-style: none; scrollbar-width: none; }
        
        .navbar {
            background-color: var(--white);
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            padding: 12px 0;
            z-index: 1040;
            position: sticky;
            top: 0;
        }

        .dropdown-menu {
            border: none; border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-top: 10px !important; z-index: 1050; 
        }
        .dropdown-item { padding: 10px 20px; font-size: 0.9rem; border-radius: 8px; margin: 0 5px; width: auto; }
        .dropdown-item:hover { background-color: #f0fff4; color: var(--primary-green); }

        /* --- Mobile Member Card (Spaced Out) --- */
        .mobile-user-card {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: white;
            border-radius: 20px;
            padding: 30px 20px; 
            margin-bottom: 25px;
            box-shadow: 0 10px 25px rgba(0, 184, 148, 0.25);
            text-align: center;
        }

        .user-profile-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 4px solid rgba(255,255,255,0.3);
            margin-bottom: 15px;
            background-color: #fff;
            padding: 2px;
        }

        .user-info-text h6 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .user-status-badge {
            background-color: rgba(255,255,255,0.2);
            padding: 4px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 25px;
        }

        .mobile-user-btn {
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            border-radius: 15px;
            padding: 12px 5px;
            font-size: 0.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.2s ease;
            height: 100%;
        }

        .mobile-user-btn span {
            font-size: 0.75rem;
            margin-top: 8px;
            font-weight: 500;
        }

        .mobile-user-btn:hover { 
            background: rgba(255,255,255,0.3); 
            transform: translateY(-3px);
        }
        
        .mobile-logout-btn { 
            background: rgba(220, 53, 69, 0.15); 
            border-color: rgba(220, 53, 69, 0.3); 
            color: #ffdce0; 
        }
        .mobile-logout-btn:hover { 
            background: rgba(220, 53, 69, 0.4); 
            color: white; 
        }

        /* --- Auth Modal --- */
        .auth-modal .modal-content { border: none; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 50px rgba(0,0,0,0.2); }
        .auth-split { display: flex; min-height: 550px; }
        .auth-left, .auth-right { padding: 40px; flex: 1; }
        .auth-left { background-color: #fff; }
        .auth-right { background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%); color: white; }
        .auth-title { font-weight: 700; margin-bottom: 25px; font-size: 1.5rem; }
        .form-control-custom { border-radius: 10px; padding: 12px 15px; border: 1px solid #eee; margin-bottom: 15px; font-size: 0.9rem; }
        .auth-btn { border-radius: 10px; padding: 12px; font-weight: 600; width: 100%; transition: 0.3s; border: none; }
        .btn-login { background-color: var(--primary-green); color: white; }
        .btn-register { background-color: white; color: var(--primary-green); }
        .auth-right .form-control-custom { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); color: white; }
        .auth-right .form-control-custom::placeholder { color: rgba(255,255,255,0.7); }
        .auth-right .form-control-custom:focus { background: rgba(255,255,255,0.25); color: white; box-shadow: none; }
        @media (max-width: 768px) { .auth-split { flex-direction: column; } .auth-right { order: 2; } .auth-left { order: 1; } }

        /* --- General UI --- */
        .top-bar { background-color: var(--top-bar-bg); padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid #e9ecef; }
        .top-bar-link { color: var(--text-grey); text-decoration: none; margin-left: 20px; font-weight: 500; transition: color 0.2s; }
        .top-bar-link:hover { color: var(--primary-green); }
        .btn-signin-top { background-color: var(--primary-green); color: white !important; padding: 4px 15px; border-radius: 20px; font-weight: 500; box-shadow: 0 2px 5px rgba(0, 184, 148, 0.2); }
        .btn-signin-top:hover { background-color: var(--dark-green); transform: translateY(-1px); }
        .navbar-brand { font-weight: 700; color: var(--primary-green) !important; font-size: 1.5rem; }
        .nav-link { color: var(--text-dark); font-weight: 500; margin: 0 8px; font-size: 0.95rem; transition: color 0.3s; position: relative; }
        .nav-link:hover { color: var(--primary-green); }
        .nav-link::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 50%; background-color: var(--primary-green); transition: all 0.3s ease; }
        .nav-link:hover::after { width: 80%; left: 10%; }
        
        .offcanvas-start { width: 80% !important; max-width: 340px; border-right: none; }
        .offcanvas-header { background-color: var(--white); color: var(--text-dark); border-bottom: 1px solid #eee; padding: 15px 20px; }
        .mobile-nav-link { display: block; padding: 12px 20px; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid #f9f9f9; font-size: 0.9rem; transition: 0.2s; border-radius: 8px; margin: 2px 10px; }
        .mobile-nav-link:hover { background-color: #f0fff4; color: var(--primary-green); padding-left: 20px; font-weight: 500; }
        .mobile-section-title { font-size: 0.75rem; color: #bbb; text-transform: uppercase; padding: 25px 20px 5px 20px; font-weight: 700; letter-spacing: 1px; }