﻿body {
    overflow-x: hidden;
}

.dashboard .sidebar {
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    /*padding-top: 56px;*/
    background-color: var(--dark-color);
    color: white;
    width: 200px;
    transition: transform 0.3s ease-in-out;
    z-index: 9;
}

    .dashboard .sidebar a {
        color: var(--light-color) !important;
        text-decoration: none;
    }

.dashboard .d-content {
    margin-left: 200px;
    min-height: 100vh;
}

.dashboard .nav-item i {
    width: 31px;
    height: 31px;
    aspect-ratio: 1/1;
}

.dashboard .sidenav-header i {
    width: 199.578px;
    height: 109px;
    flex-shrink: 0;
}

.dashboard .sidebar-cta-content {
    border-radius: 10px;
    background: var( --primary-color);
}

.dashboard .navbar-collapse {
    display: block;
    height: calc(100vh - 180px);
    overflow-y: auto;
    overflow-x: hidden;
}

.navbar-collapse::-webkit-scrollbar {
    display: none;
}

.dashboard .avatar {
    width: 21px;
    height: 21px;
    padding-right: 0.105px;
    justify-content: center;
    align-items: center;
}

.dashboard .avatar2 {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    border-radius: 58px;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
}

.dashboard .d-content .navbar .icon-wh {
    width: 23px;
    height: 23px;
    aspect-ratio: 1/1;
}

.dashboard .nav-item p {
    color: var(--light-color) !important;
}

.dashboard .nav-item .caret {
    color: var(--light-color) !important;
}

.dashboard .nav-item.active {
    background: var(--gray50) !important;
    border: 1px solid var(--default-color);
}

    .dashboard .nav-item.active p,
    .dashboard .nav-item.active .caret {
        color: var(--dark-color) !important;
    }

    .dashboard .nav-item.active i {
        filter: brightness(1) invert(1);
    }

.dashboard .nav-item:hover {
    background: var(--gray50) !important;
    border: 1px solid var(--default-color);
    /* border-top: 1px solid var(--default-color);
    border-bottom: 1px solid var(--default-color);*/
}

    .dashboard .nav-item:hover p,
    .dashboard .nav-item:hover .caret {
        color: var(--dark-color) !important;
    }

    .dashboard .nav-item:hover i {
        filter: brightness(1) invert(1);
    }

/*.nav-link:hover {
    border-left: 4px solid #00bcd4;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 1rem; 
}*/

.scroll-column {
    display: block;
    height: calc(100vh - 474px);
    overflow-y: auto;
    overflow-x: hidden;
}

    .scroll-column::-webkit-scrollbar {
        display: none;
    }

@media (max-width: 768px) {
    .dashboard .sidebar {
        transform: translateX(-100%);
    }

        .dashboard .sidebar.show {
            transform: translateX(0);
        }

    .dashboard .d-content {
        margin-left: 0;
    }
}
