/* Estilo para el menú fijo */
#menu {
    min-height: 100%; /* Asegura que ocupe toda la altura */
    font-size: 0.9em;
    padding-top: 1rem;
    z-index: 1045;
}

/* En móvil, el menú está oculto por defecto */
@media (max-width: 767px) { /* Breakpoint bootstrap Medium (md) ≥768px */
    #menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100vh;
        transform: translateX(-100%); /* Oculto inicialmente */
        transition: transform 0.3s ease-in-out;
    }

    #menu.show {
        transform: translateX(0); /* Visible cuando se abre */
    }

    .offcanvas-backdrop {
        display: none; /* Sin fondo en móvil */
    }
}

/* Estilos del menú de gestión */
.menu_gestion {
    background-color: #2d373c !important;
    color: #fff !important;
}
.menu_gestion .nav-link,
.menu_gestion .boton_logout {
    color: #eaebec !important;
    display:block;
    width: 100%;
}

.menu_gestion .material-symbols-outlined {
    color: #40E0D0;
    margin-right: 0.2em;
}
.menu_gestion a:hover, .menu_gestion .boton_logout:hover {
    color: #fff;
    background-color: #46505a !important;
    text-decoration: none;
    border-radius: .25rem;
}
.menu_gestion a:focus, .menu_gestion button:focus {
    color: #fff !important;
    text-decoration: none;
}
@media (max-width: 767px) { /* Breakpoint bootstrap Medium (md) ≥768px */
    .menu_mobile_gestion {
        background-color: #2d373c;
    }
    .menu_mobile_gestion button, .menu_mobile_gestion button:hover, .menu_mobile_gestion button:active {
        color: #fff;
        text-decoration: none;
    }
}