.history-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.history-table th,
.history-table td {
    border: 1px solid var(--border);
    padding: 0.5rem;
    text-align: center;
}

.history-table th {
    background: var(--primary-soft);
    color: var(--primary);
}

.history-table tr:nth-child(even) {
    background: var(--surface);
}

.history-table tr:hover {
    background: var(--primary-soft);
    color: var(--primary);
}
