/* ═══════════════════════════════════════════════════════════
   Blitz Tracker & + Blitz Column — Custom Styles
   Place this file in the assets/ folder so Dash auto-loads it.
   ═══════════════════════════════════════════════════════════ */

/* ── Fix delete (×) column in Blitz Tracker ── */
.dash-spreadsheet td.dash-delete-cell {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    padding: 4px 8px !important;
    text-align: center !important;
}
.dash-spreadsheet td.dash-delete-cell div {
    overflow: visible !important;
    text-overflow: clip !important;
    text-align: center !important;
    max-height: none !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.dash-spreadsheet th.dash-delete-header {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
}

/* ── Force borders on ALL blitz table cells ── */
#blitz-datatable td {
    border: 1px solid #ccc !important;
}

/* ── Widen the Agent dropdown so names don't wrap ── */
#blitz-agent-dropdown {
    min-width: 340px !important;
}

/* ── Hide sort arrows on the + Blitz column ──
   The blitz_add column is always the first <th> in the header row.
   Dash renders sort arrows as a span with class "column-header--sort"
   inside each <th>. We target the first header cell. ── */
.dash-spreadsheet th:first-child .column-header--sort,
.dash-spreadsheet-inner th:first-child .column-header--sort {
    display: none !important;
}
