body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #444;
}

header {
    padding: 10px 0;
    text-align: center;
    background-color: #0e274a;
    width: 100%;
    border-bottom: 1px solid #0e274a;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
    position: relative; /* Pour permettre le positionnement du sous-menu */
}

nav ul li a {
    text-decoration: none;
    color: #fff; /* Couleur de texte en blanc */
    font-family: 'Roboto', sans-serif;
    font-weight: 400; /* Poids de police normal */
    font-size: 16px;
}

/* Effet au survol des liens */
nav ul li a:hover {
    color: #007bff; /* Couleur de survol */
}

/* Styles pour le sous-menu */
.dropdown-menu {
    display: none; /* Masquer le sous-menu par défaut */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0e274a;
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 200px;
    border: 1px solid #0e274a; /* Ajouter une bordure */
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: #fff; /* Couleur de texte du sous-menu */
    display: block;
}

.dropdown-menu li a:hover {
    color: #007bff; /* Couleur de survol du sous-menu */
}

/* Afficher le sous-menu au survol */
.dropdown:hover .dropdown-menu {
    display: block;
}

h1 {
    text-align: left;
    margin: 20px 0;
    color: #fff;
    margin-left: 135px;
    margin-top: 50px;
}

#flight-table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #f9f9f9;
}

#flight-table thead {
    background-color: #333;
    color: #fff;
}

#flight-table thead th {
    padding: 10px;
    text-align: left;
}

#flight-table tbody tr {
    border-bottom: 1px solid #ccc;
}

#flight-table tbody td {
    padding: 10px;
    text-align: left;
}

.custom-footer {
    text-align: center;
    padding: 10px 0;
    background-color: #0e274a; /* Couleur de fond pour le footer */
    color: #fff; /* Couleur du texte dans le footer */
    position: absolute;
    bottom: 10;
    width: 100%;

}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.footer-nav-item {
    margin: 0 10px;
}

.footer-nav-link {
    color: #fff;
    text-decoration: none;
}

.footer-nav-link:hover {
    text-decoration: underline;
}
/* Conteneur pour le tableau */
#flight-table-container {
    background-color: #444;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 90%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.4);
    overflow: hidden; /* Pour que les coins du tableau soient arrondis */
}

/* Style du titre */
h1 {
    text-align: center;
    color: #f1f1f1;
    font-size: 2rem;
    margin-bottom: -10px;
    margin-top: 20px;
}

/* Styles du tableau */
#flight-table {
    width: 100%;
    color: #f1f1f1;
    background-color: #555;
    border-collapse: collapse;
    border-radius: 10px; /* Bord arrondi pour le tableau */
    overflow: hidden;
}

#flight-table thead {
    background-color: #0e274a;
}

#flight-table th, 
#flight-table td {
    padding: 12px;
    text-align: center;
    border: none;
}

#flight-table th {
    font-weight: 700;
    color: #fff;
}

#flight-table tbody tr {
    border-bottom: 1px solid #666;
}

#flight-table tbody tr:nth-child(even) {
    background-color: #666;
}

#flight-table tbody tr:nth-child(odd) {
    background-color: #555;
}

/* Effet de survol */
#flight-table tbody tr:hover {
    background-color: #777;
    transition: background-color 0.3s;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #flight-table-container {
        margin: 20px auto;
        max-width: 95%;
    }
    h1 {
        font-size: 1.5rem;
    }
    #flight-table th, #flight-table td {
        padding: 8px;
    }
}
