#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    transition: margin 0.25s ease-out;
    width: 240px; /* Adjust width as needed */
}

#sidebar-wrapper .sidebar-heading {
    /*padding: 0.875rem 1.25rem;*/
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-title {
    font-weight: bold;
    font-size: 2rem;
    background: linear-gradient(to top left, #6111ff, #8141ff);
    -webkit-background-clip: text;
    color: transparent;
}

#sidebar-wrapper .list-group {
    width: auto;
}

#page-content-wrapper {
    min-width: 100vw;
}

body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
    margin-left: 0;
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    body.sb-sidenav-toggled #wrapper #sidebar-wrapper {
        margin-left: -15rem;
    }

}

[data-bs-theme="light"] .list-group-item {
    border: none;
    background-color: transparent;
    color: #4f4f57;
    font-weight: normal;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    transition: color 0.2s, background-color 0.2s;
}

[data-bs-theme="dark"] .list-group-item {
    border: none;
    background-color: transparent;
    color: #b3b3b3;
    font-weight: normal;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    transition: color 0.2s, background-color 0.2s;
}

[data-bs-theme="light"] .list-group-item:hover,
[data-bs-theme="light"] .list-group-item:hover .sidebar-icon {
    color: #6111ff;
}
[data-bs-theme="dark"] .list-group-item:hover,
[data-bs-theme="dark"] .list-group-item:hover .sidebar-icon {
    color: #ffffff;
}

[data-bs-theme="light"] .list-group-item i {
    margin-right: 10px;
    color: #656565; /* Icon color */
}
[data-bs-theme="dark"] .list-group-item i {
    margin-right: 10px;
    color: #9a9a9a; /* Icon color */
}

.sidebar-section {
    padding-left: 10px;
}

.section-title {
    font-size: 0.75rem;
    color: #b7b9cc;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
}

hr {
    margin: 0.5rem 0;
    border: 0;
    border-top: 1px solid #e0e0e0;
}

[data-bs-theme="light"] .sidebar-active {
    color: #6111ff;
}

[data-bs-theme="dark"] .sidebar-active {
    color: #ffffff;
}