.airport-table {
width: 100%; /* Adaptation à la largeur du conteneur */
border-spacing: 0;
font-family: 'Lucida Console', 'Courier New', monospace;
background-color: #003366;
}

.airport-table th {
background-color: #336699; /* Bleu intermédiaire pour l'en-tête */
position: relative;
z-index: 10;
color: white;
padding: 10px;
text-align: left;
font-size: 21px;
}

.airport-table td {
padding: 10px;
text-align: left;
color: white;
}

.airport-table td:nth-child(0n+3) {
color: #FFD700;
font-weight: bold;
}

.airport-table tr:nth-child(odd) {
background-color: #003366; /* Bleu foncé pour les lignes impaires */
}

.airport-table tr:nth-child(even) {
background-color: #336699; /* Bleu intermédiaire pour les lignes paires */
}

@keyframes slideUpAndShrink {
  0% {
    transform: translateY(0);
    max-height: 40px;
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    max-height: 0; /* Réduit la hauteur à zéro */
    padding: 0;
  }
}

.fadeOut {
  animation: slideUpAndShrink 1s ease-in forwards;
  overflow: hidden; /* Garde le contenu de la ligne masqué lorsqu'il dépasse la hauteur max */
}
