@import "app.css";


/* ============================================
   LAYOUT ADMIN
   ============================================ */

/* remover sombras padrao dos cards/admin */
.bg-white,
.rounded-xl,
.rounded-2xl,
.rounded-3xl,
.shadow-sm,
.shadow-md,
.shadow-lg {
    box-shadow: none !important;
}


/* ============================================
   SIDEBAR MENU — MODERNO CLEAN (STRIPE/LINEAR)
   Tema BRANCO — sem risco de conflito de cores
   ============================================ */

#admin-sidebar {
    background: #FFFFFF !important;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 100%) !important;
    border-right: 1px solid #E5E7EB !important;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif !important;
    transition:
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   MENU TOGGLE — hambúrguer que vira X
   ============================================ */
.menu-icon {
    position: relative;
    display: block;
    width: 20px;
    height: 14px;
    flex-shrink: 0;
}

.menu-icon span {
    position: absolute;
    left: 0;
    top: 6px;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
        top 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.22s ease;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { width: 65%; }
.menu-icon span:nth-child(3) { top: 12px; }

/* Menu mobile aberto: hambúrguer vira X */
body.admin-menu-aberto #sidebar-open-mobile .menu-icon span:nth-child(1),
body.admin-menu-aberto #sidebar-close-mobile .menu-icon span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

body.admin-menu-aberto #sidebar-open-mobile .menu-icon span:nth-child(2),
body.admin-menu-aberto #sidebar-close-mobile .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

body.admin-menu-aberto #sidebar-open-mobile .menu-icon span:nth-child(3),
body.admin-menu-aberto #sidebar-close-mobile .menu-icon span:nth-child(3) {
    top: 6px;
    width: 100%;
    transform: rotate(-45deg);
}

/* Desktop recolhido: as barras trocam de comprimento, sem snap */
body.admin-sidebar-collapsed #sidebar-toggle-desktop .menu-icon span:nth-child(1),
body.admin-sidebar-collapsed #sidebar-toggle-desktop .menu-icon span:nth-child(3) {
    width: 65%;
}

body.admin-sidebar-collapsed #sidebar-toggle-desktop .menu-icon span:nth-child(2) {
    width: 100%;
}

/* Fechamento suave: overlay e colapso desktop acompanham o slide */
#sidebar-overlay {
    transition: opacity 0.32s ease;
}

.admin-content {
    transition:
        margin-left 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-content > header {
    transition:
        left 0.32s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Logo / Header ===== */
#admin-sidebar > div:first-child {
    background: #FFFFFF !important;
    border-bottom: 1px solid #F3F4F6 !important;
    padding: 16px 18px !important;
    position: relative;
}
#admin-sidebar > div:first-child::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #F0F1F3 50%, transparent 100%);
    pointer-events: none;
}
#admin-sidebar > div:first-child .w-10 {
    width: 42px !important;
    height: 42px !important;
    border-radius: 11px !important;
    background: linear-gradient(135deg, var(--primary, #0F766E) 0%, var(--primary-hover, #0E6C65) 100%) !important;
    box-shadow:
        0 1px 2px rgba(15,118,110,0.08),
        0 4px 12px -2px var(--primary-shadow, rgba(15,118,110,0.20)),
        inset 0 1px 0 rgba(255,255,255,0.20) !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 16px !important;
    letter-spacing: -0.015em !important;
}
#admin-sidebar > div:first-child span.font-semibold {
    font-weight: 700 !important;
    font-size: 14.5px !important;
    letter-spacing: -0.01em !important;
    color: #111827 !important;
    line-height: 1.25;
}
#admin-sidebar > div:first-child div.text-xs {
    margin-top: 2px !important;
    font-size: 11.5px !important;
    font-weight: 500 !important;
    color: #6B7280 !important;
}

/* ===== Botao X mobile ===== */
#sidebar-close-mobile {
    color: #9CA3AF !important;
    background: #F9FAFB !important;
    border: 1px solid #F3F4F6 !important;
    border-radius: 10px !important;
    transition: all 140ms ease;
}
#sidebar-close-mobile:hover {
    color: #111827 !important;
    background: #F3F4F6 !important;
    border-color: #E5E7EB !important;
}

/* ===== Nav container ===== */
#admin-sidebar > nav {
    padding: 8px 10px 20px 10px !important;
    display: flex;
    flex-direction: column;
    gap: 2px !important;
}
#admin-sidebar > nav::-webkit-scrollbar { width: 5px; }
#admin-sidebar > nav::-webkit-scrollbar-track { background: transparent; }
#admin-sidebar > nav::-webkit-scrollbar-thumb {
    background: #E5E7EB;
    border-radius: 999px;
}
#admin-sidebar > nav::-webkit-scrollbar-thumb:hover { background: #D1D5DB; }

/* ===== Section labels ===== */
#admin-sidebar > nav > div {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 12px 7px 12px !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.13em !important;
    color: #A1A9B4 !important;
}
#admin-sidebar > nav > div::after {
    content: '';
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, #EBEDF0 0%, rgba(235,237,240,0) 100%);
}
#admin-sidebar > nav > div:first-child {
    padding-top: 8px !important;
}

/* ===== Links menu ===== */
#admin-sidebar > nav > a {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 9px 12px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: -0.006em;
    color: #5A6472 !important;
    text-decoration: none !important;
    transition:
        background-color 240ms cubic-bezier(0.22, 1, 0.36, 1),
        color 240ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 300ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Entrada em cascata (disparada via JS no load / ao abrir o menu) */
#admin-sidebar.admin-nav-entrar > nav > a {
    animation: sidebarItemIn 460ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(1)  { animation-delay:  20ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(2)  { animation-delay:  50ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(3)  { animation-delay:  80ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(4)  { animation-delay: 110ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(5)  { animation-delay: 140ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(6)  { animation-delay: 170ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(7)  { animation-delay: 200ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(8)  { animation-delay: 230ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(9)  { animation-delay: 260ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(10) { animation-delay: 290ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(11) { animation-delay: 320ms; }
#admin-sidebar.admin-nav-entrar > nav > a:nth-of-type(12) { animation-delay: 350ms; }

/* Barra de acento (tema) */
#admin-sidebar > nav > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, var(--primary, #0F766E) 0%, var(--primary-hover, #0E6C65) 100%);
    z-index: 2;
    transition: height 380ms cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* Chip atrás do ícone */
#admin-sidebar > nav > a::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 30px;
    height: 30px;
    transform: translateY(-50%) scale(0.78);
    border-radius: 9px;
    background: var(--primary-light, #F0FDFA);
    opacity: 0;
    z-index: 0;
    transition:
        opacity 220ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 420ms cubic-bezier(0.34, 1.4, 0.64, 1),
        background-color 240ms ease,
        box-shadow 320ms ease;
}

#admin-sidebar > nav > a .w-5 {
    position: relative;
    z-index: 1;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
    stroke-width: 1.9 !important;
    color: #98A2B0;
    transition:
        color 220ms ease,
        transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

#admin-sidebar > nav > a .sidebar-link-text {
    position: relative;
    z-index: 1;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== Hover no tema da empresa ===== */
#admin-sidebar > nav > a:hover {
    background: var(--primary-light, #F0FDFA) !important;
    background: color-mix(in srgb, var(--primary-light, #F0FDFA) 68%, #FFFFFF) !important;
    color: var(--primary, #0F766E) !important;
}
#admin-sidebar > nav > a:hover::before {
    height: 15px;
}
#admin-sidebar > nav > a:hover::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    background: var(--primary-light, #F0FDFA);
    background: color-mix(in srgb, var(--primary, #0F766E) 14%, #FFFFFF);
}
#admin-sidebar > nav > a:hover .w-5 {
    color: var(--primary, #0F766E);
    transform: translateY(-1px) scale(1.1);
    animation: sidebarIconPop 560ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
#admin-sidebar > nav > a:hover .sidebar-link-text {
    transform: translateX(2px);
}

#admin-sidebar > nav > a:active {
    transform: scale(0.988);
}
#admin-sidebar > nav > a:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 4px var(--primary-border, #CCFBF1) !important;
}

/* ===== ITEM ATIVO ===== */
#admin-sidebar > nav > a.bg-\[var\(--primary-light\)\] {
    background: var(--primary-light, #F0FDFA) !important;
    color: var(--primary, #0F766E) !important;
    font-weight: 700 !important;
    box-shadow:
        inset 0 0 0 1px var(--primary-border, #CCFBF1),
        0 8px 20px -14px var(--primary-shadow, rgba(15,118,110,0.45)) !important;
}
#admin-sidebar > nav > a.bg-\[var\(--primary-light\)\]:hover {
    background: var(--primary-light, #F0FDFA) !important;
}
#admin-sidebar > nav > a.bg-\[var\(--primary-light\)\]::before {
    height: 20px;
}
#admin-sidebar > nav > a.bg-\[var\(--primary-light\)\]::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    background: linear-gradient(135deg, var(--primary, #0F766E) 0%, var(--primary-hover, #0E6C65) 100%);
    box-shadow:
        0 5px 12px -4px var(--primary-shadow, rgba(15,118,110,0.55)),
        inset 0 1px 0 rgba(255,255,255,0.28);
}
#admin-sidebar > nav > a.bg-\[var\(--primary-light\)\] .w-5 {
    color: #FFFFFF !important;
}
#admin-sidebar > nav > a.text-\[var\(--primary\)\] {
    color: var(--primary, #0F766E) !important;
}

@keyframes sidebarItemIn {
    from { opacity: 0; transform: translateX(-9px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes sidebarIconPop {
    0%   { transform: translateY(0) scale(1) rotate(0deg); }
    42%  { transform: translateY(-2.5px) scale(1.16) rotate(-7deg); }
    100% { transform: translateY(-1px) scale(1.1) rotate(0deg); }
}

/* Chip do item ativo "brota" logo após a entrada em cascata */
#admin-sidebar.admin-nav-entrar > nav > a.bg-\[var\(--primary-light\)\]::after {
    animation: sidebarChipIn 620ms cubic-bezier(0.34, 1.56, 0.64, 1) 240ms backwards;
}

@keyframes sidebarChipIn {
    0%   { opacity: 0; transform: translateY(-50%) scale(0.4); }
    60%  { opacity: 1; transform: translateY(-50%) scale(1.14); }
    100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes sidebarChipInRail {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.4); }
    60%  { opacity: 1; transform: translate(-50%, -50%) scale(1.14); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    #admin-sidebar > nav > a,
    #admin-sidebar > nav > a::before,
    #admin-sidebar > nav > a::after,
    #admin-sidebar > nav > a .w-5,
    #admin-sidebar > nav > a .sidebar-link-text {
        animation: none !important;
        transition-duration: 1ms !important;
    }
}


/* ============================================
   HEADER (topo admin) — MESMO ESTILO SIDEBAR
   ============================================ */

.admin-content > header {
    z-index: 40 !important;
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.88) !important;
    backdrop-filter: saturate(160%) blur(14px) !important;
    -webkit-backdrop-filter: saturate(160%) blur(14px) !important;
    border-bottom: 1px solid #F3F4F6 !important;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.03),
        0 8px 24px -16px rgba(15, 23, 42, 0.08) !important;
    position: relative;
}
.admin-content > header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-shadow, rgba(15,118,110,0.30)) 45%, var(--primary-shadow, rgba(15,118,110,0.20)) 55%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* ===== Controles do topo (mesma linguagem do menu) ===== */

.admin-content > header {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
}

.admin-content > header > div:first-child {
    height: 62px;
    padding-top: 0;
    padding-bottom: 0;
    gap: 10px;
}

.hdr-ctl {
    height: 38px;
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 10px;
    border: 1px solid #E8EAEE;
    background: #FFFFFF;
    color: #4B5563;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    transition:
        background-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 200ms cubic-bezier(0.22, 1, 0.36, 1),
        color 200ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
}
.hdr-ctl:hover {
    border-color: var(--primary-border, #CCFBF1);
    background: var(--primary-light, #F0FDFA);
    background: color-mix(in srgb, var(--primary-light, #F0FDFA) 62%, #FFFFFF);
    color: var(--primary, #0F766E);
}
.hdr-ctl:active {
    transform: scale(0.97);
}
.hdr-ctl svg {
    transition:
        color 200ms ease,
        transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hdr-ctl:hover svg {
    color: var(--primary, #0F766E);
}
.hdr-ctl:hover > svg:first-child {
    transform: translateY(-1px) scale(1.08);
}
.hdr-ctl--icon {
    width: 38px;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
}

/* Pills de status mantêm a cor semântica, só ganham geometria uniforme */
#btn-loja-status,
#btn-delivery-status {
    height: 34px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 9px;
    font-size: 11.5px;
    letter-spacing: 0.01em;
    gap: 7px;
}
#btn-loja-status[data-fechada="0"] #dot-loja {
    animation: hdrDotPulse 2.6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
@keyframes hdrDotPulse {
    0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.40); }
    70%  { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Divisores verticais */
.admin-content > header .w-px {
    height: 22px;
    background: #E9EBEF;
}

/* O badge some de verdade quando o JS recoloca .hidden */
#notificacoes-badge.hidden {
    display: none !important;
}

/* Anel do avatar no tema */
#btn-usuario-dropdown > div:first-child {
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 3.5px var(--primary-border, #CCFBF1);
    transition: box-shadow 240ms ease;
}
#btn-usuario-dropdown:hover > div:first-child {
    box-shadow: 0 0 0 2px #FFFFFF, 0 0 0 3.5px var(--primary, #0F766E);
}

/* Painéis dropdown do topo */
#empresa-dropdown,
#ver-loja-dropdown,
#notificacoes-dropdown,
#dropdown-usuario,
#loja-status-dropdown,
#delivery-status-dropdown {
    border: 1px solid #E8EAEE !important;
    border-radius: 14px !important;
    box-shadow:
        0 4px 10px -4px rgba(15, 23, 42, 0.08),
        0 24px 48px -20px rgba(15, 23, 42, 0.22) !important;
    animation: hdrDropIn 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes hdrDropIn {
    from { opacity: 0; transform: translateY(-6px) scale(0.985); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .hdr-ctl,
    .hdr-ctl svg,
    #btn-loja-status #dot-loja,
    #empresa-dropdown,
    #ver-loja-dropdown,
    #notificacoes-dropdown,
    #dropdown-usuario,
    #loja-status-dropdown,
    #delivery-status-dropdown {
        animation: none !important;
        transition-duration: 1ms !important;
    }
}

/* ===== MAIN (garante conteúdo ABAIXO do header fixo) ===== */

.admin-content > main {
    padding-top: 92px !important;
    padding-bottom: 32px !important;
}


/* ============================================
   DESKTOP
   ============================================ */

@media ( min-width: 1024px ) {

    #admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 288px;
        height: 100vh;
        z-index: 50;
        transform: none !important;
    }

    .admin-content {
        width: calc( 100% - 288px );
        margin-left: 288px;
        min-height: 100vh;
        overflow-y: auto;
        position: relative;
    }

    .admin-content > header {
        position: fixed !important;
        top: 0;
        left: 288px;
        right: 0;
        width: calc( 100% - 288px ) !important;
    }

    .admin-content > main {
        padding-top: 96px !important;
    }

}


/* ============================================
   MOBILE / TABLET
   ============================================ */

@media ( max-width: 1023.98px ) {

    #admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 288px;
        height: 100vh;
        z-index: 50;
    }

    .admin-content > header {
        left: 0 !important;
        width: 100% !important;
    }

    .admin-content > main {
        padding-top: 80px !important;
    }

}


/* ============================================
   SIDEBAR RECOLHIDA (COLLAPSED)
   ============================================ */

@media ( min-width: 1024px ) {

    body.admin-sidebar-collapsed #admin-sidebar {
        width: 76px;
    }

    body.admin-sidebar-collapsed .admin-content {
        width: calc( 100% - 76px );
        margin-left: 76px;
    }

    body.admin-sidebar-collapsed .admin-content > header {
        left: 76px;
        width: calc( 100% - 76px ) !important;
    }

    /* Esconder header details (nome da empresa + selo + texto) */
    body.admin-sidebar-collapsed #admin-sidebar > div:first-child {
        padding: 14px 0 !important;
        justify-content: center !important;
    }
    body.admin-sidebar-collapsed #admin-sidebar > div:first-child > div:not(:first-child) {
        display: none !important;
    }
    body.admin-sidebar-collapsed #sidebar-close-mobile {
        display: none !important;
    }

    /* Centralizar ícones dos links */
    body.admin-sidebar-collapsed #admin-sidebar > nav {
        padding: 8px 0 20px 0 !important;
    }
    body.admin-sidebar-collapsed #admin-sidebar > nav > a {
        justify-content: center !important;
        padding: 10px 0 !important;
        margin: 0 8px !important;
        gap: 0 !important;
    }
    body.admin-sidebar-collapsed .sidebar-link-text {
        display: none !important;
    }

    /* Esconder labels de seção */
    body.admin-sidebar-collapsed .sidebar-section {
        display: none !important;
    }
    body.admin-sidebar-collapsed #admin-sidebar > nav > a::before {
        display: none;
    }

    /* Chip do ícone centralizado no trilho */
    body.admin-sidebar-collapsed #admin-sidebar > nav > a::after {
        left: 50%;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        transform: translate(-50%, -50%) scale(0.8);
    }
    body.admin-sidebar-collapsed #admin-sidebar > nav > a:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }
    body.admin-sidebar-collapsed #admin-sidebar > nav > a.bg-\[var\(--primary-light\)\]::after {
        transform: translate(-50%, -50%) scale(1);
    }
    body.admin-sidebar-collapsed #admin-sidebar.admin-nav-entrar > nav > a.bg-\[var\(--primary-light\)\]::after {
        animation-name: sidebarChipInRail;
    }
}

/* ============================================
   TOOLTIPS (SIDEBAR RECOLHIDA)
   ============================================ */

.sidebar-tooltip {
    position: fixed;
    z-index: 9999;
    background: #111827;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: -0.005em;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 140ms ease, transform 140ms ease;
    box-shadow: 0 8px 24px -8px rgba(15,23,42,0.30);
}
.sidebar-tooltip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #111827;
}
.sidebar-tooltip.visible {
    opacity: 1;
    transform: translateX(0);
}
