.statistics-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.statistic-item {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.statistic-item:last-child {
    border-bottom: none;
}

.statistic-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.statistic-mode {
    font-weight: bold;
    color: var(--primary);
}

.statistic-score {
    font-size: 1.1rem;
    font-weight: bold;
}

.pagination-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 0.5rem;
}

.pagination-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 0.5rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary);
    color: #fff;
}

.pagination-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.pagination-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 6rem;
    text-align: center;
}
