/* ====================================================================
   Navigation bars
   ==================================================================== */
.sidebar-nav-content {
    width: 100%;
    display: block;
}
 .menu-fa-icon {
    width: 20px;
    text-align: center;
}

 .nav .nav-custom {
    color: #6e2082;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
}

 .nav .nav-custom:hover {
    background-color: #dfa2ef12;
    color: #6e2082;
}

 .nav .nav-custom.active {
    background-color: #6e2082;
    color: #ffffff !important;
}

.parent-active {
    background-color: #6e2082;
    color: #ffffff !important;
}

 .menu-collapse-wrapper {
    margin-top: 2px;
    margin-bottom: 2px;
}

 .border-start {
    border-color: #dfa2ef40 !important;
}

 .arrow-icon {
    color: #6e2082;
    display: inline-block;
    transition: transform 0.2s ease;
}

/* Tambahkan  pada transisi state untuk fontawesome agar rotasi bekerja */
 [aria-expanded="true"] .arrow-icon {
    transform: rotate(180deg);
}

 [aria-expanded="false"] .arrow-icon {
    transform: rotate(0deg);
}

.fs-7 {
    font-size: 0.8rem;
}