/* ADMIN LAYOUT */

.admin-container{
    min-height:100vh;
}

/* SIDEBAR */

.admin-sidebar{
    width:260px;
    min-height:100vh;
    background:#f8f9fa;
    border-right:1px solid #dee2e6;
    padding:20px;

    position:sticky;
    top:0;

    overflow-y:auto;
}

/* CONTENT */

.admin-content{
    padding:25px;
}

/* SIDEBAR LINKS */





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

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

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

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


/* ============================
SIDEBAR ACTIVE INDICATOR
============================ */
/*
.sidebar-link{
    color:#495057;
}

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

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

.sidebar-link {
    position: relative;
    padding-left: 18px;
}

.sidebar-link:hover {
    background-color: #f5f7fb;
}
.sidebar-link.active {
    background-color: #f4f7fc !important;
    color: #0d6efd !important;
    font-weight: 600;
}

/* barra lateral */
.sidebar-link.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background-color: #0d6efd;
    border-radius: 3px;
}

.sidebar-link.active::before {
    transition: all 0.2s ease;
}


.sidebar-section {
    font-weight: 600;
    font-size: 16px;
}