/* =========================
   Dashboard
   ========================= */

.kud-dashboard {
    width: 100%;
}

.kud-dashboard__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.kud-dashboard__title {
    margin: 0 0 12px;
    color: #0f2a4c;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
}

.kud-dashboard__description {
    margin: 0;
    color: #52647a;
    font-size: 17px;
    line-height: 1.55;
}

.kud-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.kud-tabs__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid #dfe7f3;
    border-radius: 12px;
    background: #ffffff;
    color: #0f62df;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.kud-tabs__link:hover {
    background: #f2f6ff;
    border-color: #cbd8ec;
    color: #0f2a4c;
    text-decoration: none;
}

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