.custom-nav {
    position: sticky;
    top: 2rem;
    background: white;
}

.custom-nav-item {
    border-bottom: 1px solid #eee;
}

.custom-nav-item:last-child {
    border-bottom: none;
}

.custom-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    transition: background-color 0.2s;
}

.custom-nav-link:hover {
    background-color: #f8f9fa;
}

.custom-nav-link.active {
    background-color: var(--light-green-color);
    font-weight: bold;
}

.custom-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    font-weight: bold;
    text-align: left;
}

.custom-nav-toggle:hover {
    background-color: #f8f9fa;
}

.custom-nav-toggle::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.custom-nav-toggle.active::after {
    content: '-';
}

.custom-nav-content {
    display: none;
    padding-left: 1rem;
    background: #fff;

}

.custom-nav-content.active {
    display: block;
}

.custom-nav-sublink {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
}

.custom-nav-sublink:hover {
    background-color: #f8f9fa;
}

.custom-nav-sublink.active {
    background-color: var(--light-green-color);
    font-weight: bold;
}

.custom-nav-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background-color: #0d6efd;
    color: white;
    font-size: 0.875rem;
}