/*
 * table.css — Ops UI Library: Table
 * Universal data table styles.
 * Uses CSS variables from index.html for automatic dark/light theme support.
 */

/* ── Wrapper ──────────────────────────────────────────────── */

.tbl-wrap {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

/* ── Table ────────────────────────────────────────────────── */

.tbl {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

/* ── Head ─────────────────────────────────────────────────── */

.tbl thead th {
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-2);
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

/* ── Body ─────────────────────────────────────────────────── */

.tbl-body td {
    padding: 11px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text-1);
    vertical-align: middle;
}

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

/* ── Row ──────────────────────────────────────────────────── */

.tbl-row {
    transition: background 0.1s;
}

.tbl-row:hover td {
    background: var(--sidebar-active);
}

/* ── Muted / link ─────────────────────────────────────────── */

.tbl-muted {
    color: var(--text-2);
    font-size: 12px;
}

.tbl-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 12px;
}
.tbl-link:hover {
    text-decoration: underline;
}

/* ── State row ────────────────────────────────────────────── */

.tbl-state {
    text-align: center;
    padding: 32px 12px;
    font-size: 13px;
}

.tbl-state__loading {
    color: var(--text-2);
}

.tbl-state__empty {
    color: var(--text-2);
}

.tbl-state__error {
    color: #f87171;
}

/* ── Badges ───────────────────────────────────────────────── */

.tbl-badge {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.tbl-badge--new      { background: rgba(99,102,241,0.15); color: #a5b4fc; }
.tbl-badge--active   { background: rgba(34,197,94,0.15);  color: #4ade80; }
.tbl-badge--inactive { background: rgba(255,255,255,0.06); color: var(--text-2); }
.tbl-badge--archived { background: rgba(239,68,68,0.12);  color: #f87171; }
