.menu-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .55rem 1rem;
    border-radius: 999px;
    text-decoration: none;
    color: #333;
    transition: background-color .2s, color .2s;
}

    .menu-link:hover {
        background-color: #f8f9fa;
        color: #111;
        text-decoration: none;
    }

    .menu-link.is-active {
        background-color: #343a40;
        color: #fff !important;
    }

    .menu-link.is-danger {
        color: #dc3545;
    }

        .menu-link.is-danger:hover {
            background-color: rgba(220, 53, 69, .08);
        }

.menu-sep {
    margin: .5rem 0;
    border-top: 1px solid #eee;
}

.account-sidebar {
    width: 100%;
}
.menu-section {
    display: flex;
    flex-direction: column;
}

.menu-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
