/* ========= SIBEDAR GENERAL ========== */
.sidebar{
    width: 100%;
    min-height: auto;
    background-color: #0d0d0d; /* Negro elegante */
    padding: 20px 0;
    position: sticky;
    top: 0;
    overflow-y: auto;
    box-shadow: 3px 0 10px rgba(0, 0, 0,0.4);
    border-radius: 10px;
}

/* ======= TITULOS DE SECCION ====*/
.sidebar .section-title {
    color: #9aa0a6;
    font-size: 13px;
    text-transform: uppercase;
    padding: 15px 25px 5px;
    font-weight: bold;
}

/* =========LINKS========*/
.sidebar a {
    display: block;
    padding: 12px 25px;
    color: #ffffff;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    position: relative;
}

/* ======== EFECTO HOVER AZUL ======= */
.sidebar a:hover {
    background-color: #0d47a1; /* Azul oscuro */
    color: #ffffff;
    box-shadow: inset 4px 0 0 #1e88e5; /* Línea azul luminosa */
}

/* ========= efecto de luz azul ======*/
.sidebar a:hover::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background-color: #42a5f5;/* Luz azul*/
    box-shadow: 0 0 10px #42a5f5;
}

/* ===== ICONOS (OPCIONAL) ===== */
.sidebar i {
    margin-right: 10px;
}

/* ===== ESTADO ACTIVO DEL MENÚ ===== */
.submenu-title.active {
    background-color: #0d47a1; /* Azul oscuro cuando está expandido */
    box-shadow: inset 4px 0 0 #1e88e5;
}

.submenu-title.active .arrow {
    transform: rotate(180deg); /* Girar icono cuando se expande */
    transition: transform 0.3s ease-in-out;
}

/* Transición suave para ocultar/mostrar */
.submenu-items {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 500px;
    opacity: 1;
}

.submenu-items[style*="display: none"] {
    max-height: 0;
    opacity: 0;
}

@media (max-width: 991.98px) {
    .sidebar {
        position: relative;
        top: auto;
        max-height: none;
        margin-bottom: 12px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    }

    .sidebar .section-title {
        padding: 12px 16px 4px;
        font-size: 12px;
    }

    .sidebar a {
        padding: 10px 16px;
        font-size: 14px;
    }
}
