/* ═══════════════════════════════════════════════════════════════
   Header Premium — Apple Style Navbar
   
   Arquivo:    header-premium.css
   Descrição:  Navbar fixa full-width com glassmorphism estilo Apple.
               Zero dependência de classes Tabler — tudo scoped em hp-*.
               Fonts: Inter (body) + Manrope (headings)
   
   Sumário:
     1. Variáveis
     2. Navbar Base (Glassmorphism)
     3. Logo
     4. Nav Links
     5. Dropdowns (Glass Cards)
     6. Ações do Usuário (Tema, Avatar)
     7. User Dropdown
     8. Hamburger + Mobile (≤ 768px)
     9. Dark Theme (Navy + Gold)
   
   Paleta: Navy (#0B1F33), Teal (#0EA5A4), Gold (#D6B15E)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@700&display=swap');


/* ══════════════════════════════════════
   1. VARIÁVEIS
   ══════════════════════════════════════ */

:root {
    --hp-primary: #0B1F33;
    --hp-bg: #F7FAFC;
    --hp-text: #0F172A;
    --hp-muted: #526173;
    --hp-border: #E6EDF5;
    --hp-gold: #D6B15E;
    --hp-teal: #0EA5A4;
    --hp-radius: 16px;
    --hp-shadow: 0 4px 24px rgba(11, 31, 51, .07);
    --hp-shadow-lg: 0 8px 40px rgba(11, 31, 51, .12);
}


/* ══════════════════════════════════════
   2. NAVBAR BASE
   ══════════════════════════════════════ */

.hp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--hp-border);
    z-index: 1030;
    display: flex;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    transition: box-shadow 0.4s ease, background 0.4s ease;
}

.hp-navbar.is-scrolled {
    box-shadow: var(--hp-shadow);
    background: rgba(255, 255, 255, 0.88);
}

body:has(.hp-navbar) {
    padding-top: 64px;
}

.hp-nav-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--tblr-page-padding, 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* Mantém o mesmo grid horizontal do .container-xl (Tabler) */
@media (min-width: 576px) {
    .hp-nav-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .hp-nav-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .hp-nav-container {
        max-width: 960px;
    }
}

@media (min-width: 769px) and (max-width: 1199.98px) {
    .hp-nav-container {
        max-width: 100%;
    }

    .hp-logo-img {
        margin-left: -2vw !important;
    }
}

@media (min-width: 1200px) {
    .hp-nav-container {
        max-width: 1140px;
    }

    .hp-logo-img {
        margin-left: -2vw !important;
    }
}

@media (min-width: 1400px) {
    .hp-nav-container {
        max-width: 1320px;
    }
}


/* ══════════════════════════════════════
   3. LOGO
   ══════════════════════════════════════ */

.hp-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.hp-logo:hover {
    opacity: 0.85;
}

.hp-logo-img {
    width: 190px;
    height: 150px;
    padding-bottom: 2px;
    margin-left: -1vw;
    margin-top: 15px;
    object-fit: contain;
    filter: brightness(100) invert(1);
    pointer-events: none;
}


/* ══════════════════════════════════════
   4. NAV LINKS
   ══════════════════════════════════════ */

.hp-menu-checkbox,
.hp-drop-checkbox {
    display: none;
}

.hp-nav-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    margin-left: 32px;
    gap: 24px;
    min-width: 0;
}

.hp-nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
}

.hp-nav-links>li {
    flex: 0 0 auto;
    width: max-content;
}

.hp-nav-links>li>a,
.hp-dropdown-toggle {
    text-decoration: none !important;
    color: var(--hp-muted) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color 0.3s ease, background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
    line-height: 1.15;
}

.hp-nav-links>li>a:hover,
.hp-dropdown-toggle:hover {
    color: var(--hp-primary) !important;
    background: rgba(14, 165, 164, 0.05);
}

.hp-nav-links>li>a.active,
.hp-dropdown-toggle.active {
    color: var(--hp-primary) !important;
    font-weight: 600;
    background: transparent;
}


/* ══════════════════════════════════════
   5. DROPDOWNS — Glass Cards
   ══════════════════════════════════════ */

.hp-dropdown {
    position: relative;
}

.hp-dropdown-toggle {
    gap: 4px;
}

.hp-dropdown-toggle svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hp-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--hp-border);
    border-radius: var(--hp-radius);
    box-shadow: var(--hp-shadow-lg);
    min-width: 200px;
    padding: 6px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 2px;
    pointer-events: none;
}

/* Click to open */
.hp-drop-checkbox:checked~.hp-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.hp-drop-checkbox:checked~.hp-dropdown-toggle svg {
    transform: rotate(180deg);
}

.hp-dropdown-menu a {
    padding: 9px 14px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
    display: block;
    color: var(--hp-text);
    font-size: 0.85rem;
    font-weight: 450;
    text-decoration: none;
}

.hp-dropdown-menu a:hover {
    background: rgba(14, 165, 164, 0.06);
    color: var(--hp-primary);
}

.hp-dropdown-menu a.active {
    background: rgba(14, 165, 164, 0.10);
    color: var(--hp-primary);
    font-weight: 600;
}


/* ══════════════════════════════════════
   6. AÇÕES DO USUÁRIO
   ══════════════════════════════════════ */

.hp-user-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

.hp-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hp-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px;
}

.hp-icon-btn:hover {
    color: var(--hp-gold);
}

.hp-avatar-wrap {
    position: relative;
}

.hp-avatar-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.hp-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--hp-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hp-avatar:hover {
    border-color: var(--hp-teal);
    box-shadow: 0 0 0 3px rgba(14, 165, 164, 0.1);
}

.hp-avatar-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--hp-primary) 0%, #1a3a5c 100%) !important;
    color: #fff !important;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}


/* ══════════════════════════════════════
   7. USER DROPDOWN
   ══════════════════════════════════════ */

.hp-user-dropdown {
    right: 0;
    left: auto;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hp-logo-img {
        width: 170px;
        height: 136px;
        margin-left: -2.4vw !important;
        margin-top: 14px;
    }

    .hp-nav-group {
        margin-left: 14px;
        gap: 10px;
    }

    .hp-nav-links {
        gap: 2px;
    }

    .hp-nav-links>li>a,
    .hp-dropdown-toggle {
        font-size: 0.72rem;
        padding: 6px 7px;
        letter-spacing: 0;
    }

    .hp-dropdown-toggle {
        gap: 3px;
    }

    .hp-dropdown-toggle svg {
        width: 12px;
        height: 12px;
    }

    .hp-user-actions {
        gap: 8px;
    }

    .hp-icon-btn {
        padding: 2px;
    }

    .hp-user-actions .hp-icon-btn svg {
        width: 16px;
        height: 16px;
    }

    .hp-avatar {
        width: 32px;
        height: 32px;
    }

    .hp-avatar-initials {
        font-size: 0.68rem;
    }
}

@media (min-width: 1025px) and (max-width: 1199.98px) {
    .hp-logo-img {
        width: 180px;
        height: 144px;
        margin-left: -2.2vw !important;
    }

    .hp-nav-group {
        margin-left: 18px;
        gap: 14px;
    }

    .hp-nav-links {
        gap: 4px;
    }

    .hp-nav-links>li>a,
    .hp-dropdown-toggle {
        font-size: 0.78rem;
        padding: 6px 9px;
    }

    .hp-user-actions {
        gap: 10px;
    }

    .hp-icon-btn {
        padding: 3px;
    }

    .hp-avatar {
        width: 34px;
        height: 34px;
    }
}

.hp-user-header {
    padding: 10px 14px 8px;
}

.hp-user-name {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--hp-primary);
}

.hp-user-role {
    font-size: 0.75rem;
    color: var(--hp-muted);
    margin-top: 2px;
}

.hp-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 4px 8px;
}

.hp-logout-form {
    margin: 0;
    padding: 0;
}

.hp-logout-btn {
    display: block;
    width: 100%;
    padding: 9px 14px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: #dc3545;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hp-logout-btn:hover {
    background: rgba(220, 53, 69, 0.06);
    color: #b02a37;
}


/* ══════════════════════════════════════
   8. HAMBURGER + MOBILE
   ══════════════════════════════════════ */

.hp-menu-icon {
    display: none;
    cursor: pointer;
    padding: 20px 0;
    margin-right: clamp(-1rem, -1vw, -0.1rem) !important;
    position: relative;
    user-select: none;
    z-index: 10;
}

.hp-navicon {
    background: var(--hp-primary);
    display: block;
    height: 2px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 18px;
    border-radius: 2px;
}

.hp-navicon::before,
.hp-navicon::after {
    background: var(--hp-primary);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
    border-radius: 2px;
}

.hp-navicon::before {
    top: 6px;
}

.hp-navicon::after {
    top: -6px;
}

/* X animation */
.hp-menu-checkbox:checked~.hp-menu-icon .hp-navicon {
    background: transparent;
}

.hp-menu-checkbox:checked~.hp-menu-icon .hp-navicon::before {
    transform: rotate(-45deg);
    top: 0;
}

.hp-menu-checkbox:checked~.hp-menu-icon .hp-navicon::after {
    transform: rotate(45deg);
    top: 0;
}


/* ── Responsive: Mobile (≤ 768px) ── */

@media (max-width: 768px) {
    .hp-nav-container {
        padding: 0 var(--tblr-page-padding, 0.5rem);
    }

    .hp-menu-icon {
        display: block;
        margin-left: auto;
    }

    /* Offcanvas panel */
    .hp-nav-group {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        flex: unset;
        margin-left: 0;
        gap: 0;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            opacity 0.3s ease;
        box-shadow: var(--hp-shadow-lg);
    }

    .hp-menu-checkbox:checked~.hp-nav-group {
        max-height: 85vh;
        opacity: 1;
        padding-bottom: 24px;
        overflow-y: auto;
    }

    /* Staggered fade-in */
    .hp-menu-checkbox:checked~.hp-nav-group .hp-nav-links>li {
        animation: hpFadeIn 0.35s ease both;
    }

    .hp-menu-checkbox:checked~.hp-nav-group .hp-nav-links>li:nth-child(1) {
        animation-delay: .05s;
    }

    .hp-menu-checkbox:checked~.hp-nav-group .hp-nav-links>li:nth-child(2) {
        animation-delay: .10s;
    }

    .hp-menu-checkbox:checked~.hp-nav-group .hp-nav-links>li:nth-child(3) {
        animation-delay: .15s;
    }

    .hp-menu-checkbox:checked~.hp-nav-group .hp-nav-links>li:nth-child(4) {
        animation-delay: .20s;
    }

    .hp-menu-checkbox:checked~.hp-nav-group .hp-user-actions {
        animation: hpFadeIn 0.35s ease .3s both;
    }

    @keyframes hpFadeIn {
        from {
            opacity: 0;
            transform: translateY(-8px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Nav links — vertical */
    .hp-nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .hp-nav-links>li {
        width: 100%;
        border-bottom: 1px solid var(--hp-border);
    }

    .hp-nav-links>li>a,
    .hp-dropdown-toggle {
        display: flex;
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: space-between;
        border-radius: 0;
    }

    /* Dropdown — accordion (apenas nav links) */
    .hp-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--hp-bg);
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        gap: 0;
        pointer-events: auto;
    }

    .hp-drop-checkbox:checked~.hp-dropdown-menu {
        max-height: 300px;
    }

    .hp-dropdown-menu a {
        padding: 12px 24px 12px 40px;
        border-radius: 0;
        border-bottom: 1px solid var(--hp-border);
        font-size: 0.9rem;
    }

    .hp-dropdown-menu li:last-child a {
        border-bottom: none;
    }

    /* ── User dropdown — card inline no mobile ── */
    .hp-avatar-wrap {
        width: 100%;
    }

    .hp-avatar-trigger {
        gap: 10px;
    }

    .hp-avatar-wrap .hp-user-dropdown {
        position: static;
        min-width: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        background: rgba(0, 0, 0, 0.04);
        backdrop-filter: none;
        border: none;
        border-radius: 12px;
        box-shadow: none;
        padding: 0;
        margin-top: 8px;
        transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                    padding 0.3s ease;
    }

    .hp-avatar-wrap .hp-drop-checkbox:checked~.hp-user-dropdown {
        max-height: 220px;
        padding: 8px;
    }

    .hp-avatar-wrap .hp-user-dropdown .hp-user-header {
        padding: 8px 10px 6px;
    }

    .hp-avatar-wrap .hp-user-dropdown a {
        padding: 10px 14px;
        border-radius: 8px;
        border-bottom: none;
        font-size: 0.9rem;
    }

    .hp-avatar-wrap .hp-user-dropdown .hp-divider {
        margin: 4px 8px;
    }

    .hp-avatar-wrap .hp-user-dropdown .hp-logout-btn {
        padding: 10px 14px;
        border-radius: 8px;
    }

    /* User actions */
    .hp-user-actions {
        width: 100%;
        margin: 0;
        padding: 16px 24px;
        flex-wrap: wrap;
        gap: 12px;
        border-top: 1px solid var(--hp-border);
        align-items: center;
    }

    .hp-avatar-wrap {
        order: 1;
        flex: 1;
    }
}


/* ══════════════════════════════════════
   9. DARK THEME — Navy Blue + Golden
   
   Paleta dark:
     Fundo navbar  : #0B1F33  (navy profundo)
     Texto          : #D6B15E  (gold)
     Muted          : rgba(214,177,94,.60)
     Border         : rgba(214,177,94,.15)
     Surface cards  : #0F2845  (navy card)
   
   Ativo via: [data-bs-theme=dark]  (Tabler)
   ══════════════════════════════════════ */

/* ── Variáveis sobrescritas em dark ── */
[data-bs-theme=dark] {
    --hp-bg: #071624;
    --hp-text: #D6B15E;
    --hp-muted: rgba(214, 177, 94, 0.60);
    --hp-border: rgba(214, 177, 94, 0.15);
    --hp-primary: #D6B15E;
    --hp-shadow: 0 4px 24px rgba(0, 0, 0, 0.40);
    --hp-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.55);
}

/* ── Navbar base ── */
[data-bs-theme=dark] .hp-navbar {
    background: rgba(7, 22, 36, 0.82);
    border-bottom: 1px solid rgba(214, 177, 94, 0.18);
}

[data-bs-theme=dark] .hp-navbar.is-scrolled {
    background: rgba(7, 22, 36, 0.96);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.50);
    border-bottom-color: rgba(214, 177, 94, 0.25);
}

/* ── Logo — gold no tema dark ──
   Etapas: normaliza p/ preto → inverte p/ branco → sepia quente
           → satura → hue-rotate fino → dimm para #D6B15E ── */
[data-bs-theme=dark] .hp-logo-img {
    filter: brightness(0) invert(1) sepia(1) saturate(2.5) hue-rotate(5deg) brightness(0.82) !important;
    opacity: 1;
    transition: filter 0.35s ease, opacity 0.35s ease;
}

[data-bs-theme=dark] .hp-logo:hover .hp-logo-img {
    filter: brightness(0) invert(1) sepia(1) saturate(2.8) hue-rotate(5deg) brightness(0.92) !important;
    opacity: 1;
}

/* ── Nav links ── */
[data-bs-theme=dark] .hp-nav-links>li>a,
[data-bs-theme=dark] .hp-dropdown-toggle {
    color: rgba(214, 177, 94, 0.65) !important;
}

[data-bs-theme=dark] .hp-nav-links>li>a:hover,
[data-bs-theme=dark] .hp-dropdown-toggle:hover {
    color: #D6B15E !important;
    background: rgba(214, 177, 94, 0.08);
}

[data-bs-theme=dark] .hp-nav-links>li>a.active,
[data-bs-theme=dark] .hp-dropdown-toggle.active {
    color: #D6B15E !important;
    background: rgba(214, 177, 94, 0.07);
}

/* ── Dropdown chevron ── */
[data-bs-theme=dark] .hp-dropdown-toggle svg {
    color: rgba(214, 177, 94, 0.55);
}

[data-bs-theme=dark] .hp-dropdown-toggle:hover svg,
[data-bs-theme=dark] .hp-drop-checkbox:checked~.hp-dropdown-toggle svg {
    color: #D6B15E;
}

/* ── Dropdown menus — dark glass card ── */
[data-bs-theme=dark] .hp-dropdown-menu {
    background: rgba(9, 25, 43, 0.97);
    backdrop-filter: saturate(160%) blur(24px);
    -webkit-backdrop-filter: saturate(160%) blur(24px);
    border: 1px solid rgba(214, 177, 94, 0.20);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(214, 177, 94, 0.08);
}

[data-bs-theme=dark] .hp-dropdown-menu a {
    color: rgba(214, 177, 94, 0.70);
}

[data-bs-theme=dark] .hp-dropdown-menu a:hover {
    background: rgba(214, 177, 94, 0.09);
    color: #D6B15E;
}

[data-bs-theme=dark] .hp-dropdown-menu a.active {
    background: rgba(214, 177, 94, 0.14);
    color: #D6B15E;
}

/* ── Ícones de ação ── */
[data-bs-theme=dark] .hp-icon-btn {
    color: rgba(214, 177, 94, 0.55);
}

[data-bs-theme=dark] .hp-icon-btn:hover {
    color: #D6B15E;
}

/* ── Avatar ── */
[data-bs-theme=dark] .hp-avatar {
    border: 2px solid rgba(214, 177, 94, 0.28);
}

[data-bs-theme=dark] .hp-avatar:hover {
    border-color: #D6B15E;
    box-shadow: 0 0 0 3px rgba(214, 177, 94, 0.15);
}

[data-bs-theme=dark] .hp-avatar-initials {
    background: linear-gradient(135deg, #0F2845 0%, #1a3a5c 100%) !important;
    color: #D6B15E !important;
    border: 2px solid rgba(214, 177, 94, 0.30);
}

/* ── User dropdown header ── */
[data-bs-theme=dark] .hp-user-name {
    color: #D6B15E;
}

[data-bs-theme=dark] .hp-user-role {
    color: rgba(214, 177, 94, 0.50);
}

/* ── Divider ── */
[data-bs-theme=dark] .hp-divider {
    background: rgba(214, 177, 94, 0.10);
}

/* ── Logout button ── */
[data-bs-theme=dark] .hp-logout-btn {
    color: #f28b82;
}

[data-bs-theme=dark] .hp-logout-btn:hover {
    background: rgba(242, 139, 130, 0.10);
    color: #ff8a80;
}

/* ── Hamburger (mobile) ── */
[data-bs-theme=dark] .hp-navicon,
[data-bs-theme=dark] .hp-navicon::before,
[data-bs-theme=dark] .hp-navicon::after {
    background: #D6B15E;
}

/* ── Mobile panel dark ── */
@media (max-width: 768px) {
    [data-bs-theme=dark] .hp-nav-group {
        background: rgba(7, 22, 36, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(214, 177, 94, 0.15);
    }

    [data-bs-theme=dark] .hp-nav-links>li {
        border-bottom: 1px solid rgba(214, 177, 94, 0.10);
    }

    [data-bs-theme=dark] .hp-dropdown-menu {
        background: rgba(15, 40, 69, 0.90);
    }

    [data-bs-theme=dark] .hp-dropdown-menu a {
        border-bottom-color: rgba(214, 177, 94, 0.07);
    }

    /* User dropdown dark em mobile */
    [data-bs-theme=dark] .hp-avatar-wrap .hp-user-dropdown {
        background: rgba(214, 177, 94, 0.05);
        border: none;
        box-shadow: none;
    }

    [data-bs-theme=dark] .hp-user-actions {
        border-top-color: rgba(214, 177, 94, 0.10);
    }
}
