:root {
    --brand-dark: #102a43;
    --brand-blue: #1f6feb;
    --brand-soft: #eef4ff;
    --brand-accent: #0f9d8a;
    --text-muted: #6b7a90;
    
    /* New bright colors for better visibility */
    --bright-primary: #0052cc;
    --bright-success: #28a745;
    --bright-warning: #ff9800;
    --bright-danger: #dc3545;
    --bright-info: #17a2b8;
}

body {
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
    color: #1f2933;
}

main {
    min-height: calc(100vh - 170px);
}

.site-navbar {
    padding: 1rem 0 0;
}

.site-navbar-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.95rem 1.2rem;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 24px;
    background: rgba(8, 23, 44, 0.92);
    box-shadow: 0 20px 45px rgba(16, 42, 67, 0.18);
    backdrop-filter: blur(16px);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    color: #fff;
    text-decoration: none;
}

.site-brand:hover {
    color: #fff;
    text-decoration: none;
}

.site-brand-mark,
.site-brand-mark1 {
    width: auto;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(31, 111, 235, 0.3));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

.site-brand-mark .bi,
.site-brand-mark1 .bi {
    font-size: 1.5rem;
    color: #fff;
}

.site-brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.site-brand-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
}

.site-brand-tagline {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(232, 241, 255, 0.72);
}

.site-nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    width: 100%;
}

.site-navbar .navbar-collapse {
    flex-grow: 1;
}

.site-nav-links {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 1rem !important;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 600;
    transition: all 0.25s ease;
}

.site-nav-link .bi {
    font-size: 0.95rem;
}

.site-nav-link:hover,
.site-nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-left: 0.75rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 46px;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.site-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

.site-btn-ghost {
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-btn-ghost:hover,
.site-btn-ghost.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
}

.site-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #1f6feb, #0f9d8a);
    border: none;
    box-shadow: 0 12px 28px rgba(15, 157, 138, 0.28);
}

.site-btn-primary:hover,
.site-btn-primary.active {
    color: #fff;
    box-shadow: 0 16px 34px rgba(15, 157, 138, 0.32);
}

.site-btn-outline {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.site-btn-outline:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.site-navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    padding: 0.55rem 0.7rem;
    background: rgba(255, 255, 255,1);
}

.site-navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(31, 111, 235, 0.25);
}

.site-footer {
    padding: 0.85rem 0 1.25rem;
}

.site-footer-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 18px;
    background: rgba(8, 23, 44, 0.92);
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.14);
    color: rgba(232, 241, 255, 0.78);
    backdrop-filter: blur(14px);
}

.site-footer-nav,
.site-footer-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.site-footer-nav a {
    color: rgba(232, 241, 255, 0.82) !important;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.site-footer-nav a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: none;
}

.site-footer-label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f6feb, #0f9d8a);
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 157, 138, 0.24);
    transition: all 0.25s ease;
}

.site-footer-link:hover {
    color: #fff !important;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(15, 157, 138, 0.28);
}

.legal-card {
    background: #fff;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.08);
}

.legal-copy {
    color: #44556b;
    line-height: 1.8;
}

.legal-copy p:last-child {
    margin-bottom: 0;
}

.contact-detail-card {
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31, 111, 235, 0.08), rgba(15, 157, 138, 0.08));
    border: 1px solid rgba(31, 111, 235, 0.1);
}

.contact-detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-blue);
    font-weight: 700;
}

.contact-detail-value {
    color: #1f2933;
    font-weight: 600;
}

@media (min-width: 992px) {
    .site-navbar .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .site-nav-panel {
        width: auto;
    }
}

.brand-logo {
    width: auto;
    height: 50px;
    padding:3px;
    background:#fff;
    /*object-fit: cover; */
    border-radius: 5px;
}

.hero-card,
.panel-card {
    background: #fff;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.08);
}

.hero-card {
    overflow: hidden;
}

.section-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-blue);
    font-size: 0.8rem;
    font-weight: 700;
}

.metric-card {
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-dark), #1d4f91);
    color: #fff;
}

/* ===== BOOKING IMPROVEMENTS ===== */

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 55px rgba(16, 42, 67, 0.12);
}

.step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0052cc, #1f6feb);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 8px 20px rgba(31, 111, 235, 0.3);
}

.step-badge-secondary {
    background: linear-gradient(135deg, #0f9d8a, #17a2b8);
    box-shadow: 0 8px 20px rgba(15, 157, 138, 0.3);
}

/* Calendar Navigation */
.calendar-nav {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid #e8f1ff;
}

.calendar-nav .form-control-lg {
    border: 2px solid #0052cc;
    background: white;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 82, 204, 0.1);
}

.calendar-nav .form-control-lg:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 82, 204, 0.25);
}

/* Calendar Grid */
.calendar-grid {
    background: white;
    border: 2px solid #e8f1ff;
    border-radius: 16px;
    padding: 1.5rem;
    overflow-x: auto;
}

.day-headers {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e8f1ff;
}

.day-header {
    font-weight: 700;
    color: #0052cc;
    text-align: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-date-link {
    text-decoration: none;
}

.empty-day {
    min-height: 90px;
}

.calendar-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 0.75rem;
    border: 2px solid #e8f1ff;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.calendar-date:not(.disabled):hover {
    transform: translateY(-4px);
    border-color: #0052cc;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.2);
}

.calendar-date.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f5f5f5;
}

.calendar-date.selected {
    background: linear-gradient(135deg, #0052cc, #1f6feb);
    color: white;
    border-color: #0052cc;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);
}

.calendar-date.selected .date-slots {
    color: #e8f1ff;
}

.date-number {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.date-slots {
    font-size: 0.75rem;
    color: #6b7a90;
    text-align: center;
}

.date-slots.available {
    color: #28a745;
    font-weight: 600;
}

.date-slots.unavailable {
    color: #dc3545;
    font-weight: 600;
}

/* Time Slots Section */
.time-slots-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e8f1ff;
}

.time-slots-section h4 {
    color: #0052cc;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.time-slots-section i {
    color: #0052cc;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Booking Slot */
.booking-slot {
    cursor: pointer;
    border: 2px solid #e8f1ff;
    border-radius: 14px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 130px;
}

.booking-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(15, 157, 138, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-slot:hover {
    border-color: #0052cc;
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.15);
    transform: translateY(-4px);
}

.booking-slot:hover::before {
    opacity: 1;
}

.booking-slot.active {
    border-color: #0052cc;
    background: linear-gradient(135deg, #0052cc, #1f6feb);
    color: white;
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.3);
}

.booking-slot.active .slot-date {
    color: #e8f1ff;
}

.slot-time {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0052cc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.booking-slot.active .slot-time {
    color: white;
}

.slot-time i {
    font-size: 1.2rem;
    color: inherit;
}

.slot-date {
    font-size: 0.9rem;
    color: #6b7a90;
    font-weight: 500;
}

.slot-check-icon {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 1.5rem;
    color: #28a745;
}

.booking-slot.active .slot-check-icon {
    opacity: 1;
    color: white;
}

/* Booking Summary Box */
.booking-summary-box {
    background: linear-gradient(135deg, #f8fbff, #eef4ff);
    border: 2px solid #0052cc;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
}

.summary-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7a90;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0052cc;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price Display Box */
.price-display-box {
    background: linear-gradient(135deg, #f0f9f7, #e8f5ff);
    border: 2px solid #28a745;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
}

.price-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7a90;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #28a745, #0f9d8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Elements */
.form-label-lg {
    font-size: 1rem;
    color: #0052cc;
    margin-bottom: 0.75rem;
}

.form-select-lg,
.form-control-lg {
    border: 2px solid #e8f1ff;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-select-lg:focus,
.form-control-lg:focus {
    border-color: #0052cc;
    box-shadow: 0 0 0 0.2rem rgba(0, 82, 204, 0.25);
}

.form-select-lg option {
    padding: 0.5rem;
}

/* Submit Button */
.btn-primary {
    background: linear-gradient(135deg, #0052cc, #1f6feb);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #003d99, #1653c2);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 82, 204, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
}

/* Alert Styling */
.alert-lg {
    padding: 1.5rem;
    border-radius: 14px;
    font-size: 1rem;
}

.alert-warning {
    background: linear-gradient(135deg, #fff3cd, #ffe8a1);
    border: 2px solid #ffc107;
    color: #856404;
}

.alert-info {
    background: linear-gradient(135deg, #d1ecf1, #bee5eb);
    border: 2px solid #17a2b8;
    color: #0c5460;
}

/* Make alerts span full width in grid */
.time-slots-grid .alert {
    grid-column: 1 / -1;
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-container {
        padding: 1rem;
    }

    .booking-step-card {
        padding: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .site-navbar {
        padding-top: 0.75rem;
    }

    .site-navbar-shell {
        padding: 0.9rem 1rem;
        border-radius: 20px;
    }

    .site-brand-mark,
    .site-brand-mark1 {
        width: auto;
        height: 50px;
    }

    .site-brand-title {
        font-size: 0.98rem;
    }

    .site-brand-tagline {
        font-size: 0.72rem;
    }

    .site-nav-panel {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
        padding-top: 1rem;
    }

    .site-nav-links {
        gap: 0.4rem;
    }

    .site-nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 16px;
    }

    .site-nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        padding-top: 0.9rem;
    }

    .site-btn {
        width: 100%;
    }

    .site-footer-shell {
        flex-direction: column;
        text-align: center;
    }

    .site-footer-nav,
    .site-footer-meta {
        justify-content: center;
    }

    .step-badge {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }

    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    }

    .booking-step-card.sticky-top {
        position: static;
        margin-top: 2rem;
    }

    .price-value {
        font-size: 1.75rem;
    }
}

/* Additional Enhancement Styles */
.sidebar-nav a {
    display: block;
    padding: 0.8rem 1rem;
    color: #1f2933;
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.sidebar-nav a.active,
.sidebar-nav a:hover {
    background: var(--brand-soft);
    color: var(--brand-blue);
}

.table thead th {
    white-space: nowrap;
}

/* Spinner Loading */
.spinner-border {
    border-width: 0.3em;
}

/* Form Group Spacing */
.form-group {
    position: relative;
}

.form-group .form-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Smooth Transitions */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
input[type="month"],
textarea,
select {
    transition: all 0.3s ease;
}

/* Icon Styling */
.bi {
    display: inline-block;
    vertical-align: -0.125em;
}

/* Link Styling in Form */
a {
    color: #0052cc;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #003d99;
    text-decoration: underline;
}

/* Success State */
.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
}

.form-control.is-valid:focus,
.form-select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Error State */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Badge Styling */
.badge {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-weight: 600;
}

/* Disabled State */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    background-color: #e9ecef;
    border-color: #ced4da;
    color: #6c757d;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Print Styles */
@media print {
    .booking-step-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Navbar Button Styling */
.site-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(31, 111, 235, 0.3);
    background: rgba(31, 111, 235, 0.08);
    color: #1f6feb;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.site-btn:hover {
    background: rgba(31, 111, 235, 0.15);
    border-color: #1f6feb;
    color: #1f6feb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 111, 235, 0.15);
}

.site-btn-user {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(15, 157, 138, 0.12));
    /*border: 1.5px solid rgba(0, 82, 204, 0.3);*/
    border: 1.5px solid #cdd0d4;
    color: #cdd0d4;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
}

.site-btn-user:hover,
.site-btn-user:focus {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.2), rgba(15, 157, 138, 0.2));
    border-color: #fff;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 82, 204, 0.2);
}

.site-btn-user .bi {
    font-size: 1.3rem;
}

/* Dropdown Menu Styling */
.site-dropdown-menu {
    border: 1.5px solid rgba(0, 82, 204, 0.2);
    border-radius: 12px;
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    padding: 0;
    margin-top: 0.8rem;
    min-width: 280px;
}

.site-dropdown-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(0, 82, 204, 0.1);
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.05), rgba(15, 157, 138, 0.05));
}

.site-dropdown-header .bi {
    font-size: 2rem;
    color: #0052cc;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.15), rgba(15, 157, 138, 0.15));
    border-radius: 50%;
}

.site-dropdown-header-text {
    flex: 1;
    min-width: 0;
}

.site-dropdown-header-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #102a43;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-dropdown-header-email {
    font-size: 0.82rem;
    color: #6b7a90;
    margin: 0.2rem 0 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.95rem 1.2rem;
    color: #102a43;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 0;
    font-size: 0.95rem;
}

.site-dropdown-item:hover {
    background: rgba(0, 82, 204, 0.08);
    color: #0052cc;
    padding-left: 1.4rem;
}

.site-dropdown-item.site-dropdown-logout {
    border-top: 1px solid rgba(0, 82, 204, 0.1);
    color: #dc3545;
}

.site-dropdown-item.site-dropdown-logout:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #c82333;
}

.site-dropdown-item .bi {
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

/* Dropdown Toggle Indicator */
.site-btn-user.dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.site-btn-user[aria-expanded="true"]::after {
    transform: rotate(180deg);
}
