/* Custom sidebar container */
.custom-sidebar {
    width: 280px;
}

/* Remove bullets completely */
.custom-menu,
.custom-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Main menu links */
.custom-menu li>a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

/* Hover effect */
.custom-menu li>a:hover {
    background: #f1f1f1;
}

/* Submenu indentation */
.custom-menu ul {
    padding-left: 32px;
}

/* Submenu links */
.custom-menu ul li a {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: #555;
}

/* Icon spacing */
.custom-menu i {
    min-width: 20px;
    margin-right: 10px;
    text-align: center;
}

/* Chevron for collapsible menus */
.custom-menu a[data-bs-toggle="collapse"]::after {
    content: "\f282";
    /* chevron-right */
    font-family: "bootstrap-icons";
    margin-left: auto;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

/* Rotate chevron when expanded */
.custom-menu a[aria-expanded="true"]::after {
    transform: rotate(90deg);
}