﻿/* Base styles */
html {
    position: relative;
    min-height: 100%;
    font-size: 16px;
}

body {
    transition: background .2s ease, color .2s ease;
}


@media (min-width: 768px) {
    html {
        font-size: 186px;
    }
}

/* Sidebar styles */

#appLayout {
    display: flex;
    flex-wrap: nowrap;
    margin-top: var(--nav-height);
}

.sidebar {
    width: 250px;
    /*transition: width 0.3s ease;*/
}

.sidebar.collapsed {
    width: 0;
    overflow: hidden;
}

.main-content {
    transition: margin-left 0.3s ease;
}

.sidebar .dropdown a strong {
    line-height: 60px;
}


.sidebar .sidbar-ul {
    height: calc(100vh - 136px);
    overflow-y: auto;
}
.account-dropdown {
    position: fixed;
    bottom: 0;
    width: 223px;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1050;
        background-color: var(--bs-body-bg);
    }

    .main-content {
        margin-left: 0;
    }
}

