/* Generic HTML tables outside django-tables2 (legacy / simple markup) */

table {
    border-collapse: collapse;
    width: 100%;
    background: var(--surface-card);
    border: 1px solid var(--border);
}

th,
td {
    border-bottom: 1px solid var(--border);
    padding: 0.275rem 0.375rem;
    text-align: left;
    font-size: 0.9rem;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

th {
    background: var(--surface-subtle);
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

.empty {
    color: var(--color-neutral-400);
    font-style: italic;
}
