﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: white;
    background: var(--site-bg, #000000);
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SITE LAYOUT â€” Permanent Left Sidebar
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

:root {
    --sb-w:        260px;
    --sb-bg:       #0d0d0d;
    --sb-border:   rgba(141,198,63,0.18);
    --sb-accent:   #8DC63F;
    --sb-text:     #ccc;
    --sb-muted:    #666;
    --mob-h:       56px;
    --site-bg:     #000000;
}

/* Full-viewport flex row */
body {
    display: flex;
    min-height: 100vh;
    overflow-x: hidden;
}


/* -- Tablet (601-900px): sidebar visible with labels -- */
@media (max-width: 900px) {
    :root { --sb-w: 200px; }
    .mobile-topbar { display: none !important; }
    .sb-overlay { display: none !important; }
    #site-content { height: auto !important; overflow-y: auto !important; overflow-x: hidden !important; }
    .features-grid { grid-template-columns: repeat(2, 1fr) !important; }
    #featPanel { display: none !important; }
    .features-hint { display: none; }
    .feature-card p { display: block !important; font-size: 11px !important; color: #bbb; }
    .feature-card h3 { white-space: normal !important; font-size: 11px !important; }
    .hero { flex: none !important; min-height: 50vh; }
    .app-cta-content { flex-direction: column; text-align: center; }
    .app-cta-content h2 { font-size: 18px !important; }
    .app-cta-content p { font-size: 13px !important; }
    .app-buttons { justify-content: center; }
    .sb-brand-name { font-size: 16px; }
    .sb-brand-tag { font-size: 11px; }
    .sb-logo-img { height: 52px; }
    .sb-link { font-size: 13px; padding: 8px 10px; }
}
/* -- Mobile (<=600px): icon-only collapsed sidebar -- */
@media (max-width: 600px) {
    :root { --sb-w: 62px; }
    #site-content { margin-left: calc(var(--sb-w) + 10px); }
    .site-sidebar { top: 4px; left: 4px; bottom: 4px; }

    .sb-label,
    .sb-brand-text,
    .sb-brand-tag,
    .sb-section-label,
    .sb-chevron,
    .sb-submenu { display: none !important; }

    .sb-link {
        justify-content: center;
        padding: 10px;
    }

    .sb-icon { width: 30px; height: 30px; font-size: 15px; }
    .sb-logo-img { height: 38px; }
    .sb-brand { padding: 14px 6px 10px; }
    .sb-nav   { padding: 6px 6px; }
    .sb-bottom { padding: 6px 6px 10px; }
    .sb-divider { margin: 6px 8px; }
    .sb-clinic-hours { display: none; }
}
/* ── Medium: icon-only collapsed sidebar (901px – 1240px) ── */
@media (min-width: 901px) and (max-width: 1240px) {
    :root { --sb-w: 68px; }

    .sb-label,
    .sb-brand-text,
    .sb-brand-tag,
    .sb-section-label,
    .sb-chevron,
    .sb-submenu { display: none !important; }

    .sb-link {
        justify-content: center;
        padding: 10px;
        position: relative;
    }

    /* Tooltip on hover */
    .sb-link::after {
        content: attr(data-label);
        position: absolute;
        left: calc(100% + 10px);
        top: 50%;
        transform: translateY(-50%);
        background: #1c1c1c;
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 8px;
        white-space: nowrap;
        pointer-events: none;
        opacity: 0;
        transition: opacity .15s;
        z-index: 400;
        border: 1px solid rgba(141,198,63,0.28);
        box-shadow: 0 4px 16px rgba(0,0,0,0.65);
    }
    .sb-link:hover::after { opacity: 1; }

    .sb-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .sb-logo-img { height: 44px; }

    .sb-brand { padding: 16px 8px 12px; }
    .sb-nav   { padding: 6px 8px; }
    .sb-bottom { padding: 6px 8px 12px; }
    .sb-divider { margin: 6px 10px; }
}
/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   SIDEBAR
â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-sidebar {
    width: var(--sb-w);
    flex-shrink: 0;
    background: var(--sb-bg);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 8px; left: 8px; bottom: 8px;
    z-index: 200;
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.7);
    scrollbar-width: thin;
    scrollbar-color: #222 transparent;
}

/* Content area offset */
#site-content {
    margin-left: calc(var(--sb-w) + 18px);
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Brand block */
.sb-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px 20px;
    flex-shrink: 0;
    text-decoration: none;
    text-align: center;
}
.sb-brand-top {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.sb-logo-img { height: 66px; width: auto; flex-shrink: 0; }
.sb-brand-text { display: flex; flex-direction: column; align-items: center; text-align: center; }
.sb-brand-name { font-size: 19px; font-weight: 800; color: var(--sb-accent); line-height: 1.25; }
.sb-brand-tag  { font-size: 13px; color: var(--sb-muted); font-style: italic; text-align: center; width: 100%; }

/* Nav list */
.sb-nav {
    flex: 1;
    padding: 10px 8px 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

/* Section labels */
.sb-section-label {
    font-size: 9.5px;
    font-weight: 700;
    color: var(--sb-accent);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: 12px 12px 4px;
    flex-shrink: 0;
}

/* Nav links */
.sb-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    color: var(--sb-text);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 9px;
    transition: background 0.15s, color 0.15s;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
}
.sb-link:hover { background: rgba(255,255,255,0.05); color: #fff; }
.sb-link.active {
    background: rgba(141,198,63,0.13);
    color: var(--sb-accent);
    font-weight: 600;
}
.sb-link.active .sb-icon { background: rgba(141,198,63,0.18); }

/* Icons */
.sb-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    transition: background 0.15s;
}
.sb-icon svg { width: 100%; height: 100%; display: block; }
.sb-sub-link .sb-icon { width: 20px; height: 20px; font-size: 0; }
.sb-link:hover .sb-icon { background: rgba(255,255,255,0.08); }
.sb-label { flex: 1; line-height: 1; }

/* Chevron */
.sb-chevron {
    width: 16px; height: 16px;
    fill: #555;
    transition: transform 0.25s;
    flex-shrink: 0;
}
.sb-expand-btn.open .sb-chevron { transform: rotate(180deg); }
.sb-expand-btn.open { color: var(--sb-accent); background: rgba(141,198,63,0.08); }

/* Submenu */
.sb-submenu {
    display: none;
    flex-direction: column;
    gap: 1px;
    padding: 2px 0 4px 18px;
}
.sb-submenu.open { display: flex; }
.sb-sub-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
}
.sb-sub-link:hover { background: rgba(141,198,63,0.09); color: var(--sb-accent); }

/* Divider */
.sb-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 8px 8px;
    flex-shrink: 0;
}

/* Sidebar footer */
.sb-footer {
    padding: 14px 12px 18px;
    border-top: 1px solid var(--sb-border);
    flex-shrink: 0;
}

/* Pinned bottom nav items */
.sb-bottom {
    flex-shrink: 0;
    padding: 8px 8px 14px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.sb-signin-btn {
    display: block;
    text-align: center;
    background: var(--sb-accent);
    color: #000;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 14px rgba(141,198,63,0.28);
    letter-spacing: 0.2px;
}
.sb-signin-btn:hover { background: #FFEB3B; box-shadow: 0 0 20px rgba(255,235,59,0.4); }
.sb-clinic-hours {
    font-size: 10.5px;
    color: #555;
    text-align: center;
    margin-top: 8px;
    line-height: 1.5;
}

/* â”€â”€ Mobile overlay â”€â”€ */
.sb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(2px);
    z-index: 190;
    opacity: 0;
    transition: opacity 0.3s;
}
.sb-overlay.visible { display: block; opacity: 1; }

/* â”€â”€ Mobile top bar (hidden on desktop) â”€â”€ */
.mobile-topbar {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--mob-h);
    background: var(--sb-bg);
    border-bottom: 1px solid var(--sb-border);
    box-shadow: 0 2px 14px rgba(0,0,0,0.5);
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 300;
}
.mob-logo {
    font-size: 14px;
    font-weight: 800;
    color: var(--sb-accent);
    text-decoration: none;
}
.mob-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
}
.mob-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.28s, opacity 0.2s;
}
.mob-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mob-hamburger.open span:nth-child(2) { opacity: 0; }
.mob-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mob-cta {
    font-size: 12px; font-weight: 700;
    color: #000; background: var(--sb-accent);
    padding: 6px 14px; border-radius: 20px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: var(--site-bg, #000000);
    padding: 18px 20px 14px;
    text-align: center;
}

.hero-logo {
    height: 56px;
    width: auto;
    margin-bottom: 8px;
}

.hero-content h1 {
    font-size: 18px;
    color: #FFEB3B;
    margin-bottom: 2px;
}

.hero-content p {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
}

.hero-buttons {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--sb-accent, #8DC63F);
    color: black;
}

.btn-secondary {
    background: #283C8F;
    color: white;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.4);
    background: #FFEB3B;
    color: black;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
section {
    padding: 8px 20px;
}

.section-title {
    font-size: 14px;
    color: #FFEB3B;
    text-align: center;
    margin-bottom: 6px;
}

/* Features Grid */
.features {
    background: var(--site-bg, #000000);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.feature-card {
    background: var(--site-card-bg, #2a2a2a);
    padding: 7px 5px;
    border-radius: 7px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(141, 198, 63, 0.3);
}

.feature-icon {
    font-size: 18px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-icon svg { width: 36px; height: 36px; display: block; }

.feature-card h3 {
    color: var(--sb-accent, #8DC63F);
    font-size: 9px;
    margin-bottom: 0;
    line-height: 1.3;
}

.feature-card p,
.tech-card p,
.reason-item p {
    display: none; /* shown in side panel instead */
}

.feature-card.fc-active,
.service-detail-card.fc-active,
.tech-card.fc-active,
.reason-item.fc-active,
.info-item.fc-active {
    border: 1px solid rgba(141,198,63,0.6);
    background: #333;
    transform: translateY(-3px);
}

.features-hint {
    text-align: center;
    font-size: 12px;
    color: #555;
    margin: -6px 0 10px;
    font-style: italic;
}

/* Feature info side panel */
#featPanel {
    position: fixed;
    right: -340px;
    top: 50%;
    transform: translateY(-50%);
    width: 290px;
    background: var(--site-panel-bg, #141414);
    border: 1px solid rgba(141,198,63,0.35);
    border-radius: 18px;
    padding: 24px 20px 18px;
    z-index: 300;
    transition: right 0.38s cubic-bezier(0.34,1.4,0.64,1);
    box-shadow: -6px 0 32px rgba(0,0,0,0.55);
}
#featPanel.open {
    right: 16px;
}
.fp-icon {
    font-size: 38px;
    margin-bottom: 8px;
}
.fp-icon svg { width: 38px; height: 38px; display: block; }
.fp-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--sb-accent, #8DC63F);
    margin-bottom: 12px;
    line-height: 1.3;
}
.fp-body {
    font-size: 14px;
    color: #ccc;
    line-height: 1.75;
    min-height: 48px;
    white-space: pre-line;
}
.fp-cursor {
    display: inline-block;
    color: var(--sb-accent, #8DC63F);
    font-weight: bold;
    animation: fpBlink 0.75s step-end infinite;
}
@keyframes fpBlink { 0%,100%{opacity:1} 50%{opacity:0} }
.fp-hint {
    margin-top: 14px;
    font-size: 10px;
    color: #444;
    font-style: italic;
}

/* Services Preview */
.services-preview {
    background: var(--site-bg, #0a0a0a);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--site-card-bg, #1a1a1a);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.service-card h3 {
    color: #FFEB3B;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: white;
}

.cta-center {
    text-align: center;
    margin-top: 30px;
}

/* App CTA */
.app-cta {
    background: var(--site-bg, #000000);
    text-align: center;
    box-shadow: 0 0 30px rgba(141, 198, 63, 0.3);
    border-top: 2px solid rgba(141, 198, 63, 0.2);
    border-bottom: 2px solid rgba(141, 198, 63, 0.2);
}

.app-cta-content h2 {
    font-size: 42px;
    color: #FFEB3B;
    margin-bottom: 20px;
}

.app-cta-content p {
    font-size: 20px;
    color: white;
    margin-bottom: 30px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--site-bg, #0a0a0a);
    padding: 6px 20px;
    margin-top: auto;
    flex-shrink: 0;
}

.footer-content {
    display: none;
}

.footer-section h3,
.footer-section h4 {
    color: var(--sb-accent, #8DC63F);
    margin-bottom: 15px;
}

.footer-section p,
.footer-section li {
    color: white;
    margin-bottom: 8px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-section a.foot-link {
    color: var(--sb-accent, #8DC63F);
}

.footer-section a:hover {
    color: var(--sb-accent, #8DC63F);
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 0;
    border-top: none;
    color: #555;
    font-size: 11px;
}

.footer-bottom p {
    margin: 2px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 24px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .features-grid { grid-template-columns: 1fr !important; }
    .hero-content h1 { font-size: 20px; }
    .hero-content p { font-size: 12px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { padding: 8px 20px; font-size: 13px; }
}
/* ═══════════════════════════════════════════
   DASHBOARD HEADER BAR
═══════════════════════════════════════════ */
.dash-header {
    position: sticky;
    top: 0;
    z-index: 150;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
}
/* Left: status dot + greeting */
.dh-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.dh-status {
    position: relative;
    width: 32px; height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dh-dot {
    width: 13px; height: 13px;
    border-radius: 50%;
    background: #f44336;
    position: relative;
    z-index: 2;
}
.dh-ripple {
    position: absolute;
    width: 13px; height: 13px;
    border-radius: 50%;
    border: 2px solid currentColor;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%) scale(1);
    animation: dhRipple 2s ease-out infinite;
    color: #f44336;
}
.dh-ripple:nth-child(3) { animation-delay: 0.55s; }
.dh-ripple:nth-child(4) { animation-delay: 1.1s; }
@keyframes dhRipple {
    0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.7; }
    100% { transform: translate(-50%,-50%) scale(3.2); opacity: 0; }
}
.dh-greeting { display: flex; flex-direction: column; min-width: 0; }
.dh-sub  { font-size: 10.5px; color: #777; line-height: 1.3; }
.dh-name { font-size: 13px; font-weight: 700; color: #fff;
           white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3; }
/* Search */
.dh-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    flex: 0 1 220px;
}
.dh-search-icon {
    position: absolute;
    left: 8px;
    width: 13px; height: 13px;
    fill: #555;
    pointer-events: none;
}
.dh-search {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    padding: 6px 12px 6px 28px;
    outline: none;
    transition: border-color 0.2s;
}
.dh-search:focus { border-color: var(--sb-accent, #8DC63F); }
.dh-search::placeholder { color: #555; }
/* Right action icon buttons */
.dh-actions {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}
.dh-icon-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    position: relative;
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.dh-icon-btn:hover { background: rgba(255,255,255,0.08); color: #fff; }
.dh-badge {
    position: absolute;
    top: 2px; right: 2px;
    background: #f44336; color: #fff;
    font-size: 9px; font-weight: 700;
    min-width: 15px; height: 15px;
    border-radius: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}
/* Sign in pill (shown when not logged in) */
.dh-signin-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--sb-accent, #8DC63F);
    color: #000;
    font-size: 12px; font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
    -webkit-tap-highlight-color: transparent;
}
.dh-signin-pill:hover { background: #FFEB3B; }
/* Avatar zone (shown when logged in) */
.dh-avatar-zone {
    position: relative;
    flex-shrink: 0;
}
.dh-avatar-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 2px;
    -webkit-tap-highlight-color: transparent;
}
.dh-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--site-card-bg, #1a1a1a);
    border: 1.5px solid #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px; font-weight: 700;
    color: var(--sb-accent, #8DC63F);
}
.dh-chev { width: 16px; height: 16px; fill: #555; transition: transform 0.2s; flex-shrink: 0; }
.dh-avatar-btn.open .dh-chev { transform: rotate(180deg); }
/* Dropdown */
.dh-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 210px;
    background: var(--site-panel-bg, #1a1a1a);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
    display: none;
    z-index: 160;
}
.dh-dropdown.open { display: block; }
.dh-dd-name {
    padding: 10px 16px 8px;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 4px;
}
.dh-dd-fullname { font-size: 13px; font-weight: 700; color: #fff; }
.dh-dd-sub { font-size: 10px; color: #888; margin-top: 2px; }
.dh-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    color: #ccc;
    font-size: 13px;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.dh-dd-item:hover { background: rgba(141,198,63,0.1); color: var(--sb-accent, #8DC63F); }
.dh-dd-item.danger { color: #f44336; }
.dh-dd-item.danger:hover { background: rgba(244,67,54,0.1); color: #f44336; }
.dh-dd-item { display: flex; align-items: center; gap: 8px; }
.dh-dd-icon { width: 16px; height: 16px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dh-dd-icon svg { width: 16px; height: 16px; display: block; }
.dh-dd-divider { height: 1px; background: #2a2a2a; margin: 4px 0; }
/* Mobile/tablet adjustments */
@media (max-width: 900px) {
    .dh-search-wrap { flex: 0 1 130px; }
    .dh-sub { display: none; }
}
@media (max-width: 600px) {
    .dh-search-wrap { display: none; }
    .dh-greeting { max-width: 120px; }
}