/* ==========================================================================
   planning.css — mise en page du planning du week-end

   Partagée entre : l'impression depuis l'application (index.html la charge
   avec media="print") et la page publique planning.html envoyée aux
   arbitres (chargée en écran).
   ========================================================================== */

.imp-planning {
  font-family: Arial, sans-serif;
  color: #000;
  background: #fff;
}

.imp-entete {
  display: flex;
  align-items: center;
  gap: 8mm;
  margin-bottom: 4mm;
}
.imp-logo { max-height: 16mm; max-width: 30mm; }
.imp-club { font-size: 14pt; font-weight: bold; color: var(--c-primaire, #b00); }
.imp-titre { font-size: 12pt; font-weight: bold; }
.imp-saison { margin-left: auto; font-size: 9pt; color: #555; }

.imp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 8.5pt;
}
.imp-table th {
  border: 0.4mm solid #000;
  background: #ddd;
  padding: 1.2mm 1.5mm;
  font-size: 8pt;
}
.imp-table td {
  border: 0.3mm solid #000;
  padding: 1mm 1.5mm;
  vertical-align: middle;
}
.imp-equipe { width: 26mm; }
.imp-division { display: block; font-size: 7pt; color: #444; }
.imp-centre { text-align: center; }
.imp-table td.imp-centre:nth-child(7) { width: 55mm; font-weight: bold; }
.imp-table td:last-child { width: 40mm; }
.imp-officiel { font-weight: bold; letter-spacing: 0.5mm; }
.imp-salle { color: #b00; font-style: italic; }

.imp-pied {
  margin-top: 3mm;
  font-size: 7.5pt;
  color: #333;
}
