.sidebar-wrapper {
    display: flex;
    position: fixed;
    justify-content: center;
    align-items: center;
    width: 20vw;
    height: 100vh;
    padding-left: 0.5%;
    z-index: 1000;
}

.li-item-sidebar {
    display: flex;
    width: 90%;
    height: 15%;
    margin: 1%;
    color: white;
    align-items: center;
    font-weight: bold;
    border-radius: 3px;
}

.item-active {
    background: var(--accent);
    color: var(--sidebar-active-color) !important;
    font-weight: 700 !important;
    border-radius: 10px;
}

.item-active p {
    color: var(--sidebar-active-color) !important;
}

.li-item-sidebar:hover {
    background-color: var(--accent);
    color: white;
}

.sidebar-container {
    height: 95%;
    width: 95%;
    display: flex;
    border-radius: 10px;
    background: var(
        --background-800
    ); /*linear-gradient(180deg, #279eff 0%, #279eff 50%, #384e78 100%);*/
    flex-direction: column;
    filter: drop-shadow(6px 5px 10px #0000005b);
}

.sidebar-top-logo {
    display: flex;
    height: 10%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    color: #fff;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
    font-weight: bolder;
    justify-content: center;
    align-items: center;
    padding: 10%;
}

.sidebar-top-logo img {
    width: 12%;
}

.sidebar-top-logo h6 {
    font-weight: 600 !important;
}

.custom-text {
    margin-top: 1vh;
    color: #fff;
    text-align: center;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.jabatan-title {
    color: white;
    text-align: center;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.5;
}

.sidebar-middle-profile {
    display: flex;
    height: 30%;
    width: 100%;
    flex-direction: column;
    background-color: rgba(210, 230, 33, 0);
    justify-content: center;
    align-items: center;
    margin-bottom: 4vh;
}

.profile-photo {
    aspect-ratio: 1/1;
    width: 32%;
    border-radius: 50%; /* Makes the frame circular */
    overflow: hidden; /* Hides the parts of the image outside the circular frame */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    background-color: #f0f0f0; /* Background color of the circular frame */
}

.sidebar-item {
    display: flex;
    height: 45%;
    width: 100%;
    flex-direction: column;
    background-color: rgba(195, 212, 42, 0);
    justify-content: flex-start;
    align-items: center;
}
