﻿/* =========================================
   MAIN LAYOUT
========================================= */

html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* =========================================
   SIDEBAR
========================================= */

#sidebar-wrapper {
    width: 260px;
    min-width: 260px;
    background: #1f252b;
    transition: margin-left 0.3s ease;
}

/* DESKTOP COLLAPSE */
#wrapper.toggled #sidebar-wrapper {
    margin-left: -260px !important;
}

#wrapper.toggled #page-content-wrapper {
    margin-left: 0 !important;
    width: 100%;
}

/* NORMAL STATE */
/* PAGE CONTENT */
#page-content-wrapper {
    flex: 1;
    min-width: 0;
    width: 100%;
    background: #f5f6f8;
    transition: all 0.3s ease;
}
/* NAVBAR */
.navbar {
    min-height: 64px;
}

    /* THEME BUTTON FIX */
    .navbar .ms-auto {
        display: flex;
        align-items: center;
    }
/* SIDEBAR */
#sidebar-wrapper {
    width: 260px;
    min-width: 260px;
    transition: all 0.3s ease;
}
#wrapper {
    overflow-x: hidden;
}
/* =========================================
   PAGE CONTENT
========================================= */

#page-content-wrapper {
    flex: 1;
    min-width: 0;
    background: #f5f6f8;
}

/* =========================================
   SIDEBAR HEADER
========================================= */

.sidebar-header {
    min-height: 82px;
    background: #1f252b;
}

/* =========================================
   LOGO
========================================= */

.sidebar-logo {
    width: 120px;
    height: auto;
    background: white;
    padding: 4px;
    object-fit: contain;
}

/* =========================================
   TITLE
========================================= */

.sidebar-title {
    color: white;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

/* =========================================
   MENU
========================================= */

#sidebar-wrapper .list-group-item {
    background: transparent !important;
    color: white !important;
    border: none !important;
    padding: 14px 20px;
    font-size: 15px;
}

    #sidebar-wrapper .list-group-item:hover {
        background: #2d3742 !important;
    }

    #sidebar-wrapper .list-group-item.active {
        background: #0d6efd !important;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    #sidebar-wrapper {
        position: fixed;
        height: 100%;
        z-index: 2000;
        margin-left: -260px;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: 0 !important;
    }
}
