/* Account module — responsive breakpoints */

@media (max-width: 767px) {
    .acc-auth-card { padding: var(--space-lg); }
    .acc-dashboard__header { flex-direction: column; align-items: flex-start; }
    .acc-history-table, .acc-history-table thead, .acc-history-table tbody,
    .acc-history-table tr, .acc-history-table th, .acc-history-table td {
        display: block;
    }
    .acc-history-table thead { display: none; }
    .acc-history-table td { border-bottom: none; padding: 4px 12px; }
    .acc-history-table__row, .acc-history-table__row--retest {
        border-bottom: 1px solid var(--color-border);
        padding: 8px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .acc-dashboard__card-grid { grid-template-columns: 1fr; }
}
