﻿
body {
    /*padding-top: 56px;*/
    min-height: 100vh;
    overflow-x: hidden;
}

.sidebar {
    min-height: 100vh;
    position: fixed;
    top: 56px;
    left: 0;
    width: 250px;
    background-color: #343a40;
    color: white;
}

    .sidebar .nav-link.active {
        background-color: #495057;
    }

.content {
    margin-left: 250px;
    padding: 20px;
}

.submenu {
    padding-left: 1.5rem;
}

.user-dropdown img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}


.arrow {
    margin-left: auto;
    transition: transform 0.2s ease;
}

.collapse.show + .arrow, .nav-link[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.arrow {
    transform: rotate(0deg); /* Pointing Down */
}

.nav-link span {
    display: flex;
    align-items: center;
}


.nav-link.active, .nav-link.active .arrow {
    background-color: #495057;
    font-weight: bold;
}

.collapse.show .arrow {
    transform: rotate(180deg); /* Arrow points up when expanded */
}

.submenu .nav-link.active {
    background-color: #6c757d;
    font-weight: bold;
}

.submenu {
    margin-left: 20px;
}





