/* Style pour les tableaux Jekyll */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

table thead {
  background-color: #24292e; /* Couleur sombre style 42 */
  color: #ffffff;
}

table th, table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

table tbody tr:nth-of-type(even) {
  background-color: #f8f9fa; /* Lignes alternées pour la lecture */
}

table tbody tr:hover {
  background-color: #eef6fb; /* Effet au survol */
}

/* Rendre le tableau scrollable sur mobile */
@media screen and (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
  }
}


h3 {
  margin-top: 3rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0077b5;
  color: #24292e;
  font-family: 'Segoe UI', sans-serif;
}

table strong {
  color: #0077b5; /* Met les noms phonétiques en bleu */
}

/* Coloration spécifique pour les signaux d'urgence */
table td:contains("MAYDAY") {
  color: #d73a49; /* Rouge */
  font-weight: bold;
}

table td:contains("PAN-PAN") {
  color: #f66a0a; /* Orange */
  font-weight: bold;
}

table td:contains("SÉCURITÉ") {
  color: #0077b5; /* Bleu */
  font-weight: bold;
}

/* Style pour les cellules contenant du Morse */
table td:nth-child(2) {
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  letter-spacing: 2px;
  color: #24292e;
}
