/* ════════════════════════════════════════════════════════
   tg.css — styles spécifiques à la page Vue Turbogénérateurs
   (extraits de l'ancien <style> en ligne de tg.html)
════════════════════════════════════════════════════════ */

/* ── Dimensions de la timeline ── */
.time-axis  { margin-left: 140px; }
.grid-lines { left: 140px; }
.row-label  { width: 140px; }
.stock-label{ width: 140px; }
.row-track  { height: 36px; }

/* ── Bandeau de séparation entre plateformes ── */
.site-header {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding: 12px 0 4px 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.site-header:first-child {
  border-top: none;
  margin-top: 0;
}

/* ── Formulaire de saisie des heures TG ── */
.heures-form {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
}
.heures-input {
  width: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.65rem;
  padding: 2px 4px;
  text-align: right;
}
.heures-input:focus {
  outline: none;
  border-color: var(--accent);
}
/* Bouton ✓ de validation */
.heures-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--accent);
  font-size: 0.65rem;
  padding: 2px 5px;
  cursor: pointer;
  transition: background 0.15s;
}
.heures-btn:hover {
  background: var(--accent);
  color: #000;
}
/* Texte affiché si TG vide */
.heures-vide {
  font-size: 0.6rem;
  color: var(--muted);
  margin-top: 3px;
  padding-left: 4px;
}
