/* =====================================================
   DESKTOP SIDEBAR
===================================================== */

.sidebar {
    width: 230px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #1976D2;
    z-index: 1000;
}

.sidebar-brand {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 25px;
}

.sidebar-menu {
    padding: 10px;
}

.sidebar-menu .menu-title {
    color: rgba(255,255,255,.65);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 20px 15px 10px;
}

.sidebar-menu a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px 18px;
    margin-bottom: 5px;
    border-radius: 12px;
    transition: all .2s ease;
}

.sidebar-menu a:hover {
    background: rgba(255,255,255,.12);
}

.sidebar-menu a.active {
    background: rgba(255,255,255,.18);
    border-left: 4px solid #fff;
    font-weight: 600;
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.main-content {
    margin-left: 230px;
}


/* =====================================================
   MOBILE SIDEBAR (OFFCANVAS)
===================================================== */

.offcanvas {
    width: 280px !important;
}

.offcanvas-header {
    border-bottom: 1px solid #e9ecef;
}

.offcanvas-title {
    font-weight: 600;
}

.offcanvas .menu-title {
    color: #6c757d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 20px 0 10px;
}

.offcanvas-body {
    padding: 15px;
}

.offcanvas-body a {
    display: flex;
    align-items: center;
    gap: 10px;

    width: 100%;

    padding: 12px 15px;

    margin-bottom: 5px;

    text-decoration: none;
    color: #333;

    border-radius: 10px;

    transition: all .2s ease;
}

.offcanvas-body a:hover {
    background: #f1f3f5;
    color: #1976D2;
}

.offcanvas-body a.active {
    background: #1976D2;
    color: #fff;
    font-weight: 600;
}

.offcanvas-body a i {
    width: 18px;
    text-align: center;
    font-size: 16px;
}

