/*
 * Minimal styling for DogsArk DLA haplotype tables.
 *
 * This stylesheet applies a clean, unobtrusive style to the tables generated
 * by the `[dogsark_haplotype_table]` shortcode. The aim is to fit with
 * lightweight themes without adding bloat. You can customise colours or
 * borders as needed.
 */

.dogsark-haplotype-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.dogsark-haplotype-table th,
.dogsark-haplotype-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.dogsark-haplotype-table thead {
    background: #f7f7f7;
    font-weight: 600;
}

.dogsark-haplotype-table tbody tr:nth-child(even) {
    background: #fafafa;
}