.dashboard-switcher {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.dashboard-switcher-link {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #334155;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.dashboard-switcher-link.active {
    background: var(--pap-blue-soft);
    border-color: var(--pap-blue-soft);
    color: var(--pap-blue);
}

.dashboard-switcher-link.disabled {
    opacity: 0.55;
    pointer-events: none;
}

.dashboard-switcher-link small {
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
}

@media (max-width: 768px) {
    .dashboard-switcher {
        flex-direction: column;
    }

    .dashboard-switcher-link {
        width: 100%;
        justify-content: flex-start;
    }
}
