/* =========================
   Account sidebar
   ========================= */

.kud-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding: 24px;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 42, 76, 0.08);
}

.kud-sidebar__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #edf2f8;
}

.kud-sidebar__group:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.kud-sidebar__title {
    margin: 0 0 8px;
    color: #0f2a4c;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
}

.kud-sidebar__link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    background: transparent;
    color: #52647a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.kud-sidebar__link:hover {
    background: #f2f6ff;
    color: #0f62df;
    text-decoration: none;
    transform: translateX(2px);
}

.kud-sidebar__link.is-active {
    background: #eef4ff;
    color: #0f2a4c;
}