/*  website/static/css/module_sidebar.css  *
/* ===== SIDEBAR DEL MÓDULO ===== */

.module-sidebar {
    width: 240px;
    min-height: calc(100vh - 56px);
    background: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.module-content {
    background: #ffffff;
}

/* Estilo links */

.module-sidebar .nav-link {
    border-radius: 8px;
    color: #495057;
    transition: all 0.2s ease;
}

.module-sidebar .nav-link:hover {
    background-color: #e9ecef;
}

/* Activo (preparado para siguiente mejora) */



/* SIDEBAR LINKS */

/*

.sidebar-link{
    color:#495057;
}

.sidebar-link:hover{
    background:#e9ecef;
}

.sidebar-link.active{
    background:#0d6efd;
    color:white;
}


.sidebar .nav-link.active {
    background-color: #e7f1ff;
    color: #0d6efd;
    border-left: 4px solid #0d6efd;
    font-weight: 600;
}

.sidebar .nav-link:hover {
    background-color: #f5f5f5;
}

*/