/* ========================================
   AI MODERN THEME - SIDEBAR STYLES
   ========================================*/

/* Sidebar principal - usando cores da original */
.dash-sidebar {
    width: 255px;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 1020;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.dash-sidebar.light-sidebar.transprent-bg {
    background: transparent;
    box-shadow: none;
} 

@media (min-width: 1024px) {
    .dash-sidebar.light-sidebar.transprent-bg {
        background: transparent;
    }

    .dash-sidebar.light-sidebar.transprent-bg .navbar-content {
        height: calc(100vh - 70px);
    }

    .dash-sidebar.light-sidebar:not(.transprent-bg) {
        background: #FFFFFF;
    }

    .dash-sidebar.light-sidebar:not(.transprent-bg) .navbar-content {
        height: calc(100vh - 110px);
    }
}

/* Sidebar collapsed - apenas ícones */
.minimenu .dash-sidebar {
    width: 70px;
    border-right: 1px solid #f1f1f1;
}

/* Header da sidebar */
.dash-sidebar .navbar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    min-height: 70px;
    position: relative;
}

.minimenu .dash-sidebar .navbar-header {
    justify-content: center;
    padding: 15px 12px;
}

/* Logo */
.dash-sidebar .navbar-brand {
    display: flex;
    align-items: center;
}

.dash-sidebar .app-logo {
    max-height: 40px;
    width: auto;
}

.minimenu .dash-sidebar .app-logo {
    max-height: 35px;
}

/* Botão de toggle - posicionado na divisa fora da sidebar */
.navbar-expander {
    position: fixed;
    top: 50px;
    left: 240px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1025;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
}

/* Posição do botão quando sidebar minimizada */
.minimenu .navbar-expander {
    left: 55px;
}

.navbar-expander:hover {
    background: #f8f9fa;
    color: #333;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
}

.navbar-expander i {
    font-size: 14px;
}

/* Container do conteúdo */
.dash-sidebar .navbar-content {
    height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 16px 0;
    margin-top: 40px;
}

.minimenu .dash-sidebar .navbar-content {
    padding: 16px 8px;
}

/* Lista de navegação */
.dash-navbar {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Captions/separadores */
.dash-sidebar .dash-caption {
    color: #525b69;
    display: flex;
    align-items: center;
    padding: 0px 20px 0px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    height: 26px;
    box-sizing: border-box;
    line-height: 1.2;
}

.minimenu .dash-sidebar .dash-caption {
    opacity: 0;
    visibility: hidden;
}

/* Itens do menu */
.dash-item {
    margin: 0;
    position: relative;
}

.dash-link {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    /* color: #8797a1; */
    text-decoration: none;
    border-radius: 6px;
    margin: 2px 10px;
    transition: all 0.2s ease;
    position: relative;
    font-size: 14px;
    height: 44px;
    box-sizing: border-box;
}

/* Sidebar collapsed - botões quadradinhos centralizados */
.minimenu .dash-sidebar .dash-link {
    padding: 0px;
    margin: 10px;
    border-radius: 6px;
    justify-content: center;
    width: calc(100% - 16px);
    height: 34px;
    box-sizing: border-box;
}

/* Ícones */
.dash-micon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.dash-micon i,
.dash-micon svg {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.minimenu .dash-sidebar .dash-micon {
    margin-right: 0;
    width: 24px;
    height: 24px;
}

/* Imagens de avatar */
.dash-micon .user-avatar {
    /* width: 24px !important;
    height: 24px !important; */
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.minimenu .dash-sidebar .dash-micon .user-avatar {
    /* width: 24px !important;
    height: 24px !important; */
}

/* Texto do menu */
.dash-mtext {
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
    transition: opacity 0.2s ease;
    color: inherit;
}

.minimenu .dash-sidebar .dash-mtext {
    opacity: 0;
    visibility: hidden;
    width: 0;
    overflow: hidden;
}

/* Exceção para submenus - sempre visíveis */
.dash-submenu .dash-mtext {
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
    overflow: visible !important;
}

/* Seta para submenus - fora do botão */
.dash-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.2s ease, opacity 0.2s ease;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8797a1;
    pointer-events: none;
}

/* Rotação quando submenu aberto */
.dash-hasmenu.dash-trigger .dash-arrow {
    transform: translateY(-50%) rotate(90deg);
}

.minimenu .dash-sidebar .dash-arrow {
    opacity: 0;
    visibility: hidden;
}

/* Setas visíveis quando expandida */
body:not(.minimenu) .dash-sidebar .dash-arrow {
    opacity: 1;
    visibility: visible;
}

/* Ajustar padding do link para dar espaço à seta */
.dash-hasmenu .dash-link {
    padding-right: 40px;
}

/* TEMA 1 - Estados hover e ativo */
.theme-1 .dash-link:hover {
    background: var(--theme-1-light-color);
    color: var(--theme-1-color);
    text-decoration: none;
}

.theme-1 .dash-item.active > .dash-link {
    background: var(--theme-1-color);
    color: var(--theme-1-contrast-color);
}

.theme-1 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-1-color); */
}

.theme-1 .dash-item.active > .dash-link .dash-micon i,
.theme-1 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-1 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-1-light-color);
    color: var(--theme-1-color) !important;
    /* border-left-color: var(--theme-1-color); */
}

.theme-1 .submenu-sidebar .submenu-item.active {
    background: var(--theme-1-light-color);
    color: var(--theme-1-color) !important;
    /* border-left-color: var(--theme-1-color); */
}

/* TEMA 2 - Estados hover e ativo */
.theme-2 .dash-link:hover {
    background: var(--theme-2-light-color);
    color: var(--theme-2-color);
    text-decoration: none;
}

.theme-2 .dash-item.active > .dash-link {
    background: var(--theme-2-color);
    color: var(--theme-2-contrast-color);
}

.theme-2 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-2-color); */
}

.theme-2 .dash-item.active > .dash-link .dash-micon i,
.theme-2 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-2 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-2-light-color);
    color: var(--theme-2-color) !important;
    /* border-left-color: var(--theme-2-color); */
}

.theme-2 .submenu-sidebar .submenu-item.active {
    background: var(--theme-2-light-color);
    color: var(--theme-2-color) !important;
    /* border-left-color: var(--theme-2-color); */
}

/* TEMA 3 - Estados hover e ativo */
.theme-3 .dash-link:hover {
    background: var(--theme-3-light-color);
    color: var(--theme-3-color);
    text-decoration: none;
}

.theme-3 .dash-item.active > .dash-link {
    background: var(--theme-3-color);
    color: var(--theme-3-contrast-color);
}

.theme-3 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-3-color); */
}

.theme-3 .dash-item.active > .dash-link .dash-micon i,
.theme-3 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-3 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-3-light-color);
    color: var(--theme-3-color) !important;
    /* border-left-color: var(--theme-3-color); */
}

.theme-3 .submenu-sidebar .submenu-item.active {
    background: var(--theme-3-light-color);
    color: var(--theme-3-color) !important;
    /* border-left-color: var(--theme-3-color); */
}

/* TEMA 4 - Estados hover e ativo */
.theme-4 .dash-link:hover {
    background: var(--theme-4-light-color);
    color: var(--theme-4-color);
    text-decoration: none;
}

.theme-4 .dash-item.active > .dash-link {
    background: var(--theme-4-color);
    color: var(--theme-4-contrast-color);
}

.theme-4 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-4-color); */
}

.theme-4 .dash-item.active > .dash-link .dash-micon i,
.theme-4 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-4 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-4-light-color);
    color: var(--theme-4-color) !important;
    /* border-left-color: var(--theme-4-color); */
}

.theme-4 .submenu-sidebar .submenu-item.active {
    background: var(--theme-4-light-color);
    color: var(--theme-4-color) !important;
    /* border-left-color: var(--theme-4-color); */
}

/* TEMA 5 - Estados hover e ativo */
.theme-5 .dash-link:hover {
    background: var(--theme-5-light-color);
    color: var(--theme-5-color);
    text-decoration: none;
}

.theme-5 .dash-item.active > .dash-link {
    background: var(--theme-5-color);
    color: var(--theme-5-contrast-color);
}

.theme-5 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-5-color); */
}

.theme-5 .dash-item.active > .dash-link .dash-micon i,
.theme-5 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-5 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-5-light-color);
    color: var(--theme-5-color) !important;
    /* border-left-color: var(--theme-5-color); */
}

.theme-5 .submenu-sidebar .submenu-item.active {
    background: var(--theme-5-light-color);
    color: var(--theme-5-color) !important;
    /* border-left-color: var(--theme-5-color); */
}

/* TEMA 6 - Estados hover e ativo */
.theme-6 .dash-link:hover {
    background: var(--theme-6-light-color);
    color: var(--theme-6-color);
    text-decoration: none;
}

.theme-6 .dash-item.active > .dash-link {
    background: var(--theme-6-color);
    color: var(--theme-6-contrast-color);
}

.theme-6 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-6-color); */
}

.theme-6 .dash-item.active > .dash-link .dash-micon i,
.theme-6 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-6 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-6-light-color);
    color: var(--theme-6-color) !important;
    /* border-left-color: var(--theme-6-color); */
}

.theme-6 .submenu-sidebar .submenu-item.active {
    background: var(--theme-6-light-color);
    color: var(--theme-6-color) !important;
    /* border-left-color: var(--theme-6-color); */
}

/* TEMA 7 - Estados hover e ativo */
.theme-7 .dash-link:hover {
    background: var(--theme-7-light-color);
    color: var(--theme-7-color);
    text-decoration: none;
}

.theme-7 .dash-item.active > .dash-link {
    background: var(--theme-7-color);
    color: var(--theme-7-contrast-color);
}

.theme-7 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-7-color); */
}

.theme-7 .dash-item.active > .dash-link .dash-micon i,
.theme-7 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-7 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-7-light-color);
    color: var(--theme-7-color) !important;
    /* border-left-color: var(--theme-7-color); */
}

.theme-7 .submenu-sidebar .submenu-item.active {
    background: var(--theme-7-light-color);
    color: var(--theme-7-color) !important;
    /* border-left-color: var(--theme-7-color); */
}


/* TEMA 8 - Estados hover e ativo */
.theme-8 .dash-link:hover {
    background: var(--theme-8-light-color);
    color: var(--theme-8-color);
    text-decoration: none;
}

.theme-8 .dash-item.active > .dash-link {
    background: var(--theme-8-color);
    color: var(--theme-8-contrast-color);
}

.theme-8 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-8-color); */
}

.theme-8 .dash-item.active > .dash-link .dash-micon i,
.theme-8 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-8 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-8-light-color);
    color: var(--theme-8-color) !important;
    /* border-left-color: var(--theme-8-color); */
}

.theme-8 .submenu-sidebar .submenu-item.active {
    background: var(--theme-8-light-color);
    color: var(--theme-8-color) !important;
    /* border-left-color: var(--theme-8-color); */
}


/* TEMA 9 - Estados hover e ativo */
.theme-9 .dash-link:hover {
    background: var(--theme-9-light-color);
    color: var(--theme-9-color);
    text-decoration: none;
}

.theme-9 .dash-item.active > .dash-link {
    background: var(--theme-9-color);
    color: var(--theme-9-contrast-color);
}

.theme-9 .dash-item.dash-trigger > .dash-link {
    /* color: var(--theme-9-color); */
}

.theme-9 .dash-item.active > .dash-link .dash-micon i,
.theme-9 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-9 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-9-light-color);
    color: var(--theme-9-color) !important;
    /* border-left-color: var(--theme-9-color); */
}

.theme-9 .submenu-sidebar .submenu-item.active {
    background: var(--theme-9-light-color);
    color: var(--theme-9-color) !important;
    /* border-left-color: var(--theme-9-color); */ 
}

/* TEMA 10 - Estados hover e ativo */
.theme-10 .dash-link:hover {
    background: var(--theme-10-light-color);
    color: var(--theme-10-color);
    text-decoration: none;
}

.theme-10 .dash-item.active > .dash-link {
    background: var(--theme-10-color);
    color: var(--theme-10-contrast-color);
}

.theme-10 .dash-item.dash-trigger > .dash-link {
    /* background: var(--theme-10-light-color); */
    /* color: var(--theme-10-color); */
}

.theme-10 .dash-item.active > .dash-link .dash-micon i,
.theme-10 .dash-item.dash-trigger > .dash-link .dash-micon i {
    color: inherit;
}

.theme-10 .submenu-sidebar .submenu-item:hover {
    background: var(--theme-10-light-color);
    color: var(--theme-10-color) !important;
    /* border-left-color: var(--theme-10-color); */
}

.theme-10 .submenu-sidebar .submenu-item.active {
    background: var(--theme-10-light-color);
    color: var(--theme-10-color) !important;
    /* border-left-color: var(--theme-10-color); */
}

/* Esconder submenus originais na sidebar collapsed */
.minimenu .dash-sidebar .dash-submenu,
.minimenu .dash-sidebar .dash-hasmenu .dash-submenu,
.minimenu .dash-sidebar .dash-hasmenu.dash-trigger .dash-submenu {
    display: none !important;
}

/* Submenu expandido na sidebar normal */
.dash-submenu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    margin-left: 30px;
    display: none;
}

/* Mostrar submenus apenas quando expandida */
body:not(.minimenu) .dash-hasmenu.dash-trigger > .dash-submenu,
body:not(.minimenu) .dash-sidebar .dash-hasmenu.dash-trigger > .dash-submenu {
    display: block !important;
}

.dash-hasmenu.dash-trigger > .dash-link > .dash-arrow,
.dash-sidebar .dash-hasmenu.dash-trigger > .dash-link > .dash-arrow {
    transform: translateY(-50%) rotate(90deg) !important;
}

.dash-submenu .dash-item {
    margin: 1px 0;
    position: relative;
    padding: 2px 10px;
}

.dash-submenu .dash-item:before {
    /* content: '';
    position: absolute;
    left: -18px;
    top: 50%;
    height: 4px;
    width: 4px;
    background: #8797a1;
    border-radius: 50%;
    transform: translateY(-50%); */
}

.dash-submenu .dash-item.active:before,
.dash-submenu .dash-item:hover:before {
    background: #51459d;
}

.dash-submenu .dash-link {
    padding: 8px 16px;
    margin: 0;
    font-size: 13px;
    color: #8797a1 !important;
    border-radius: 4px;
    text-decoration: none;
    display: block;
    height: 32px;
    box-sizing: border-box;
    line-height: 16px;
}

.dash-submenu .dash-link,
.dash-submenu .dash-link * {
    color: #8797a1 !important;
}

.dash-submenu .dash-link:hover,
.dash-submenu .dash-link:hover * {
    color: #51459d !important;
    background: rgba(81, 69, 157, 0.05);
    text-decoration: none;
}

.dash-submenu .dash-item.active > .dash-link,
.dash-submenu .dash-item.active > .dash-link * {
    color: #51459d !important;
    background: rgba(81, 69, 157, 0.1);
    font-weight: 600;
}

/* Forçar visibilidade do texto dos submenus */
.dash-submenu .dash-link {
    visibility: visible !important;
    opacity: 1 !important;
}

.dash-submenu .dash-mtext {
    color: #8797a1 !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto !important;
    overflow: visible !important;
}

/* HRs separadores */
.dash-sidebar hr {
    margin: 8px 20px;
    border-color: #e5e7eb;
    height: 1px;
    border: 0;
    background: #e5e7eb;
}

.minimenu .dash-sidebar hr {
    margin: 8px 10px;
}

/* ========================================
   SUBMENU SIDEBAR SEPARADA
   ========================================*/

.submenu-sidebar {
    position: fixed;
    top: 0;
    left: 70px;
    width: 250px;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
    z-index: 1010;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

/* Mostrar submenu sidebar */
.submenu-sidebar.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

/* Esconder submenu sidebar quando não minimizada */
body:not(.minimenu) .submenu-sidebar {
    display: none !important;
}

/* Header da submenu */
.submenu-sidebar .submenu-header {
    padding: 20px 20px 16px;
    border-bottom: 1px solid #e5e7eb;
    /* background: #f8f9fa; */
    /* margin-top: 70px; */
}

.submenu-sidebar .submenu-title {
    font-size: 15px;
    font-weight: 600;
    color: #51459d;
    margin: 0;
    display: flex;
    align-items: center;
}

/* .submenu-sidebar .submenu-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #51459d;
    border-radius: 2px;
    margin-right: 12px;
} */

/* Conteúdo da submenu */
.submenu-sidebar .submenu-content {
    padding: 12px 0;
}

/* Itens da submenu */
.submenu-sidebar .submenu-item {
    display: block;
    padding: 12px 20px;
    color: #8797a1 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 13px;
    position: relative;
}

.submenu-sidebar .submenu-item:hover {
    text-decoration: none;
}

.submenu-sidebar .submenu-item.active {
    font-weight: 600;
}

.submenu-sidebar .submenu-item.active::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* ========================================
   RESPONSIVIDADE
   ========================================*/

@media (max-width: 1024px) {
    .dash-sidebar {
        transform: translateX(-100%);
    }
    
    .dash-sidebar.show {
        transform: translateX(0);
    }
    
    .submenu-sidebar {
        display: none !important;
    }
}

/* ========================================
   ANIMAÇÕES SUAVES
   ========================================*/

/* Transição suave para textos aparecerem - DESABILITADO PARA EVITAR PISCAR */
body:not(.minimenu) .dash-sidebar .dash-mtext {
    /* animation: fadeInText 0.3s ease 0.2s both; */
    opacity: 1;
}

body:not(.minimenu) .dash-sidebar .dash-arrow {
    /* animation: fadeInText 0.3s ease 0.2s both; */
    opacity: 1;
}

body:not(.minimenu) .dash-sidebar .dash-caption {
    /* animation: fadeInText 0.3s ease 0.2s both; */
    opacity: 1;
}

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

/* Scrollbar customizada */
.dash-sidebar .navbar-content::-webkit-scrollbar,
.submenu-sidebar::-webkit-scrollbar {
    width: 4px;
}

.dash-sidebar .navbar-content::-webkit-scrollbar-track,
.submenu-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.dash-sidebar .navbar-content::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 2px;
}

.submenu-sidebar::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 2px;
}

.dash-sidebar .navbar-content::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

.submenu-sidebar::-webkit-scrollbar-thumb:hover {
    background: #d1d5db;
}

/* Adjustments para mobile */
@media (max-width: 1024px) {
    .navbar-expander {
        left: 55px !important;
        top: 20px;
        width: 28px;
        height: 28px;
    }
    
    .submenu-sidebar {
        display: none !important;
    }
    
    .dash-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .dash-sidebar.show {
        transform: translateX(0);
    }
}

.minimenu .dash-sidebar {
    width: 70px !important;
    min-width: 70px !important;
    max-width: 70px !important;
    transition: none !important;
}

/* Esconder textos no minimenu IMEDIATAMENTE */
.minimenu .dash-sidebar .dash-mtext,
.minimenu .dash-sidebar .dash-arrow,
.minimenu .dash-sidebar .dash-caption {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Forçar visibilidade imediata dos ícones */
.dash-sidebar .dash-micon,
.dash-sidebar .dash-micon i,
.dash-sidebar .dash-micon svg {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
}

/* Textos visíveis apenas no menu expandido */
body:not(.minimenu) .dash-sidebar .dash-mtext {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
}

/* Arrow visível apenas no menu expandido */
body:not(.minimenu) .dash-sidebar .dash-arrow {
    opacity: 1 !important;
    visibility: visible !important;
    animation: none !important;
    transition: none !important;
}

/* Desabilitar TODAS as animações na sidebar durante carregamento */
.dash-sidebar,
.dash-sidebar * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}