@charset "UTF-8";

/* ── Airy data table ─────────────────────────────────────────────────────── */

.airy-table {
    border-collapse: collapse;
    width: 100%;
}

.airy-table thead th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6c757d;
    font-weight: 600;
    padding: 6px 14px 8px;
    border: none;
    border-bottom: 2px solid #dee2e6;
    background: transparent;
}

.airy-table tbody td {
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid #f0f2f5;
    vertical-align: middle;
}

.airy-table tbody tr:last-child td {
    border-bottom: none;
}

.airy-table tbody tr:hover td {
    background-color: #f8f9fa;
}

/* Row-level state classes */
.airy-table tbody tr.table-danger    td { background-color: rgba(220, 53, 69, 0.12); }
.airy-table tbody tr.table-secondary td { background-color: #e9ecef; }
.airy-table tbody tr.bg-light        td { background-color: #f8f9fa; }

/* Statement: adjusted / disputed booking rows */
.booking-row-adjusted td { background-color: #fffdf0 !important; }
.booking-row-disputed  td { background-color: #fff5f5 !important; }
