/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #1a1c1a;
  --surface:    #242624;
  --surface2:   #2e302e;
  --border:     #3a3e3a;
  --text:        #e8ede8;
  --text-muted:  #8a9288;
  --accent:      #6ABF29;
  --accent-h:    #82D633;
  --accent-dark: #539920;
  --radius:      6px;
  --row-h:       42px;
  --header-h:    62px;
  /* Largeurs colonnes fixes du Gantt (modifiables via JS) */
  --gcol-w0: 200px;
  --gcol-w1: 100px;
  --gcol-w2: 100px;
}

/* ── Thème clair ──────────────────────────────────────────────── */
html.light {
  --bg:        #f4f6f4;
  --surface:   #ffffff;
  --surface2:  #edf0ed;
  --border:    #c8cdc8;
  --text:      #1a1c1a;
  --text-muted: #5a6058;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 13px;
}

/* ── Header ──────────────────────────────────────────────────── */
#app-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  height: var(--header-h);
  background: var(--surface);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

#app-header .logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

#app-header .logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

#app-header .logo-text {
  display: flex;
  flex-direction: column;
}

#app-header .logo-name {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}
#app-header .logo-name span { color: var(--accent); }

#app-header .logo-sub {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

#app-header .version-badge {
  font-size: 9px;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2px 8px;
  white-space: nowrap;
}

#app-header .subtitle {
  color: var(--text-muted);
  font-size: 11px;
}

.spacer { flex: 1; }

#mode-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}
#mode-badge.viewer  { background: var(--surface2); color: var(--text-muted); border: 1px solid var(--border); }
#mode-badge.editor  { background: rgba(106,191,41,.15); color: var(--accent); border: 1px solid var(--accent); }

#btn-toggle-mode {
  padding: 6px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  cursor: pointer;
  font-size: 12px;
  transition: background .15s;
}
#btn-toggle-mode:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Credit footer ───────────────────────────────────────────── */
#app-footer {
  text-align: center;
  padding: 12px 20px;
  font-size: 10px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--surface);
  margin-top: 20px;
}
#app-footer strong { color: var(--accent); }

/* ── Main ────────────────────────────────────────────────────── */
#main {
  padding: 20px;
  max-width: 100%;
  overflow-x: auto;
}

/* ── Type filter bar ─────────────────────────────────────────── */
#type-filter-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  align-items: center;
}
#type-filter-bar .type-filter-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-right: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.tf-btn {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.tf-btn:hover { border-color: var(--accent); color: var(--accent); }
.tf-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Stats boîtes ────────────────────────────────────────────── */
#stats-boites {
  margin-bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
#stats-boites-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  cursor: pointer;
  user-select: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
#stats-boites-header:hover { background: var(--surface2); }
#stats-boites-body { overflow-x: auto; }
#stats-boites-body table {
  min-width: unset;
  width: 100%;
  border-collapse: collapse;
}
#stats-boites-body th, #stats-boites-body td {
  padding: 6px 14px;
  font-size: 11px;
  text-align: center;
  border-right: 1px solid var(--border);
  white-space: nowrap;
}
#stats-boites-body th:first-child, #stats-boites-body td:first-child { text-align: left; font-weight: 700; }
#stats-boites-body thead tr { background: var(--surface2); }
#stats-boites-body thead th { color: var(--text-muted); font-size: 10px; }
#stats-boites-body tbody tr { border-bottom: 1px solid var(--border); }
#stats-boites-body tbody tr:hover { background: var(--surface2); }
#stats-boites-body .st-total { font-weight: 700; color: var(--accent); }

/* ── Group block ─────────────────────────────────────────────── */
.group-block { margin-bottom: 32px; }

.group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.group-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.group-toggle {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  transition: background .1s;
}
.group-toggle:hover { background: var(--surface2); }

/* ── Table wrapper ───────────────────────────────────────────── */
.table-wrapper {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1100px;
}

thead tr { background: var(--surface2); }
thead th {
  padding: 10px 12px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
  user-select: none;
  position: relative;
}

tbody tr {
  height: var(--row-h);
  border-bottom: 1px solid var(--border);
  transition: background .1s;
  position: relative;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--surface2); }
tbody tr.archived-row { opacity: .5; }

td {
  padding: 6px 12px;
  vertical-align: middle;
  white-space: nowrap;
}

/* ── Chips (badges colorés) ──────────────────────────────────── */
.chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

/* Commercial */
.chip-Gaetan       { background: rgba(255,159, 67,.25); color: #ff9f43; }
.chip-Thomas       { background: rgba(106,191, 41,.25); color: #6ABF29; }
.chip-Pascal       { background: rgba(  0,184,148,.25); color: #00b894; }
.chip-Kevin        { background: rgba(253,121,168,.25); color: #fd79a8; }
.chip-Marina       { background: rgba(225,112, 85,.25); color: #e17055; }
.chip-Marion       { background: rgba(253,203,110,.25); color: #fdcb6e; }
.chip-JF           { background: rgba(116,185,255,.25); color: #74b9ff; }
.chip-Sebastien    { background: rgba( 38,222,129,.25); color: #26de81; }

/* Type */
.chip-Bungalow     { background: rgba(116,185,255,.25); color: #74b9ff; }
.chip-Container    { background: rgba(253,121,168,.25); color: #fd79a8; }
.chip-Premium      { background: rgba(253,203,110,.25); color: #fdcb6e; }

/* État */
.chip-Termine      { background: rgba(106,191, 41,.2);  color: #6ABF29; }
.chip-EnCours      { background: rgba(253,171, 61,.2);  color: #fdab3d; }
.chip-Avenir       { background: rgba( 74,144,226,.2);  color: #4a90e2; }
.chip-Bloque       { background: rgba(226, 68, 92,.2);  color: #e2445c; }
.chip-Standby      { background: rgba(232, 67,147,.25); color: #e84393; }

/* Réception */
.chip-rec-afaire   { background: rgba(226, 68, 92,.2);  color: #e2445c; }
.chip-rec-fait     { background: rgba(106,191, 41,.2);  color: #6ABF29; }

/* Payé */
.chip-paye-oui     { background: rgba(106,191, 41,.2);  color: #6ABF29; }
.chip-paye-non     { background: rgba(226, 68, 92,.2);  color: #e2445c; }

/* ── Inline edit ─────────────────────────────────────────────── */
td.editable { cursor: pointer; }
td.editable:hover .cell-text { text-decoration: underline dotted; }

td input.cell-input, td input.cell-number {
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  width: 100%;
  outline: none;
}

.cell-select {
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
  outline: none;
}
.cell-select option { background: var(--surface2); }

/* ── Tooltip historique ──────────────────────────────────────── */
.row-tooltip {
  position: fixed;
  z-index: 9000;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  min-width: 320px;
  max-width: 460px;
  box-shadow: 0 8px 24px rgba(0,0,0,.6);
  pointer-events: none;
  font-size: 11.5px;
  line-height: 1.6;
}
.row-tooltip .tt-title {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 6px;
  font-size: 12px;
}
.row-tooltip .tt-entry { color: var(--text-muted); margin-bottom: 2px; }
.row-tooltip .tt-entry b { color: var(--text); }
.row-tooltip .tt-empty { color: var(--text-muted); font-style: italic; }

/* ── Boutons d'action ────────────────────────────────────────── */
.btn {
  padding: 7px 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: opacity .15s;
}
.btn:hover { opacity: .85; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-success { background: var(--accent); color: #fff; }
.btn-danger  { background: #e2445c; color: #fff; }
.btn-ghost   { background: transparent; border: 1px solid var(--border); color: var(--text); }

.btn-del {
  padding: 3px 8px;
  background: transparent;
  border: 1px solid rgba(253,171,61,.4);
  color: #fdab3d;
  border-radius: 4px;
  cursor: pointer;
  font-size: 10px;
  transition: background .1s;
  white-space: nowrap;
}
.btn-del:hover { background: rgba(253,171,61,.15); }

/* ── KPI bar ─────────────────────────────────────────────────── */
#kpi-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  align-items: center;
}

.kpi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--kpi-color, var(--accent));
  border-radius: var(--radius);
  padding: 10px 18px;
  min-width: 100px;
  text-align: center;
  transition: transform .1s, box-shadow .1s;
}
.kpi-card.kpi-clickable { cursor: pointer; }
.kpi-card.kpi-clickable:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
  border-color: var(--kpi-color);
}

.kpi-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--kpi-color, var(--text));
  line-height: 1.1;
}
.kpi-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 3px;
}

.kpi-reset {
  background: transparent;
  border: 1px dashed #e2445c;
  color: #e2445c;
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 11px;
  cursor: pointer;
  transition: background .15s;
  align-self: center;
}
.kpi-reset:hover { background: rgba(226,68,92,.15); }

/* ── Colonnes triables ───────────────────────────────────────── */
thead th.col-sortable { cursor: pointer; user-select: none; white-space: nowrap; }
thead th.col-sortable:hover { background: rgba(255,255,255,.05); }
.col-label { margin-right: 4px; }
.sort-ic-wrap { display: inline-block; width: 12px; text-align: center; }
.sort-ic { font-size: 10px; }
.sort-none { color: var(--border); }
.sort-asc  { color: var(--accent); }
.sort-desc { color: var(--accent); }

/* ── Ligne de filtres ────────────────────────────────────────── */
.filter-row td {
  padding: 4px 6px;
  background: var(--bg);
  border-bottom: 2px solid var(--border);
}

/* ── Poignée de redimensionnement des colonnes ───────────────── */
.col-resize-handle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  cursor: col-resize;
  z-index: 5;
  border-right: 2px solid transparent;
  transition: border-color .15s;
}
.col-resize-handle:hover, .col-resize-handle.dragging {
  border-right-color: var(--accent);
}
.filter-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 11px;
  outline: none;
  transition: border-color .15s;
}
.filter-input:focus { border-color: var(--accent); }
.filter-input::placeholder { color: var(--border); }

/* ── Add row / group ─────────────────────────────────────────── */
.add-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 6px 14px;
  background: transparent;
  border: 1px dashed var(--border);
  color: var(--text-muted);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 12px;
  transition: all .15s;
}
.add-row-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(106,191,41,.08); }

#add-group-section {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
#new-group-name {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 7px 12px;
  font-size: 13px;
  width: 300px;
  outline: none;
}
#new-group-name:focus { border-color: var(--accent); }

/* ── Archives section ────────────────────────────────────────── */
.archives-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 5px 12px;
  background: transparent;
  border: 1px dashed rgba(253,171,61,.4);
  color: #fdab3d;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 11px;
  transition: all .15s;
}
.archives-toggle:hover { background: rgba(253,171,61,.08); }
.archives-section { margin-top: 4px; opacity: .7; }

/* ── Modal ───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 32px;
  min-width: 340px;
  box-shadow: 0 16px 48px rgba(0,0,0,.6);
}
.modal-box h2 { font-size: 16px; margin-bottom: 16px; }
.modal-box label { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.modal-box input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
}
.modal-box input:focus { border-color: var(--accent); }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }
.modal-error { color: #e2445c; font-size: 12px; margin-bottom: 10px; min-height: 18px; }

/* Sortie Réelle valeur colorée */
.sortie-reelle-val { color: #74b9ff; font-weight: 500; }

/* ── Scrollbar ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  #main { padding: 12px; }
  table { min-width: 900px; }
}

/* ═══════════════════════════════════════════════════════════════
   TAB BAR
═══════════════════════════════════════════════════════════════ */
#tab-bar {
  display: flex;
  gap: 4px;
  padding: 0 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.tab-btn {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color .15s, border-color .15s;
  margin-bottom: -1px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   GANTT VIEW
═══════════════════════════════════════════════════════════════ */
#gantt-view { padding: 20px; }

.gantt-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: center;
}
.gantt-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-muted);
}
.gantt-legend-bar {
  width: 28px;
  height: 10px;
  border-radius: 5px;
}
.gantt-legend-diamond {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

.gantt-block { margin-bottom: 28px; }
.gantt-group-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  padding-left: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gantt-group-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--accent);
  border-radius: 2px;
}

.gantt-scroll-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.gantt-table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

.gantt-lh {
  position: sticky;
  background: var(--surface2);
  z-index: 4;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 8px 10px;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  top: 0;
  vertical-align: bottom;
}
.gantt-lh-0 { left: 0;                                     width: var(--gcol-w0); min-width: var(--gcol-w0); max-width: var(--gcol-w0); }
.gantt-lh-1 { left: var(--gcol-w0);                         width: var(--gcol-w1); min-width: var(--gcol-w1); max-width: var(--gcol-w1); }
.gantt-lh-2 { left: calc(var(--gcol-w0) + var(--gcol-w1));  width: var(--gcol-w2); min-width: var(--gcol-w2); max-width: var(--gcol-w2); border-right: 2px solid var(--border); }

.gantt-month-th {
  position: sticky;
  top: 0;
  background: var(--surface2);
  z-index: 2;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .3px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  padding: 7px 4px;
  text-transform: uppercase;
}

.gantt-week-th {
  background: var(--surface2);
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  padding: 4px 0;
  min-width: 8px;
  border-bottom: 2px solid var(--border);
  border-right: 1px solid rgba(58,63,92,.4);
  font-weight: 500;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  overflow: hidden;
}
.gantt-week-th.is-today { color: #fdab3d; font-weight: 700; background: rgba(253,171,61,.12); }
.gantt-week-th.year-sep { border-left: 2px solid var(--accent); color: var(--accent-h); }

.gantt-ld {
  position: sticky;
  background: var(--surface);
  z-index: 2;
  padding: 5px 10px;
  white-space: nowrap;
  font-size: 12px;
  border-right: 1px solid var(--border);
  vertical-align: middle;
}
.gantt-ld-0 { left: 0;                                     width: var(--gcol-w0); min-width: var(--gcol-w0); max-width: var(--gcol-w0); overflow: hidden; text-overflow: ellipsis; }
.gantt-ld-1 { left: var(--gcol-w0);                         width: var(--gcol-w1); min-width: var(--gcol-w1); max-width: var(--gcol-w1); overflow: hidden; text-overflow: ellipsis; }
.gantt-ld-2 { left: calc(var(--gcol-w0) + var(--gcol-w1));  width: var(--gcol-w2); min-width: var(--gcol-w2); max-width: var(--gcol-w2); border-right: 2px solid var(--border); overflow: hidden; }

.gantt-wc {
  min-width: 8px;
  height: 34px;
  padding: 0;
  border-right: 1px solid rgba(58,63,92,.3);
  position: relative;
  vertical-align: middle;
}
.gantt-wc.is-today { background: rgba(253,171,61,.05); border-right-color: rgba(253,171,61,.3); }
.gantt-wc.year-sep { border-left: 2px solid var(--accent); }

.gbar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  left: 0;
  right: 0;
  z-index: 1;
}
.gbar.gbar-s  { left: 5px;  border-radius: 9px 0 0 9px; }
.gbar.gbar-e  { right: 5px; border-radius: 0 9px 9px 0; }
.gbar.gbar-se { left: 5px; right: 5px; border-radius: 9px; }

.gbar-lbl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9px;
  font-weight: 700;
  color: rgba(0,0,0,.75);
  white-space: nowrap;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 0 4px rgba(255,255,255,.6);
}

.gsr-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: #fff;
  border: 1.5px solid var(--bg);
  border-radius: 2px;
  z-index: 3;
}

.gantt-row { border-bottom: 1px solid var(--border); }
.gantt-row:hover .gantt-ld  { background: var(--surface2); }
.gantt-row:hover .gantt-wc  { background: rgba(255,255,255,.015); }
.gantt-row:hover .gantt-wc.is-today { background: rgba(253,171,61,.08); }

.gantt-sep-row td {
  background: var(--surface2);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
