/* Styles de base */
body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    text-align: center;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

button {
    background-color: #ff5722;
    color: #fff;
    cursor: pointer;
	width: 10%;
}

button:hover {
    background-color: #e64a19;
}

.hidden {
    display: none;
}

	
/* Conteneur avec ascenseur */
pre {
    background-color: #333;
    color: #fff;
    padding: 10px;
    overflow: auto;
    max-height: 400px;
    border-radius: 5px;
}

/* Style des listes déroulantes */
select {
    background-color: #444;
    color: #fff;
    border: 1px solid #666;
    width: auto;
    padding: 8px;
    margin-right: 10px;
}

select:focus {
    border-color: #ff5722;
    outline: none;
}

/* Organisation en lignes */
.equipment-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.equipment-row > select {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    margin-bottom: 10px;
}
.hidden {
    display: none;
}
.table-container {
    display: block; /* Passer en affichage bloc pour empiler les éléments */
    margin-bottom: 10px; /* Ajouter un espace entre chaque conteneur */
}

.table-container span {
    display: block; /* Le nom de la table occupe une ligne au-dessus */
    font-weight: bold; /* Garder le style gras */
    margin-bottom: 5px; /* Ajouter un espace entre le nom et la liste */
}

.table-container select {
    width: 100%; /* Ajuster la largeur si nécessaire */
}
/* Style pour le bouton Télécharger */
#downloadFileBtn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50; /* Couleur verte */
    color: white;
    text-align: center;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none; /* Retirer le soulignement */
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#downloadFileBtn:hover {
    background-color: #45a049; /* Couleur légèrement plus foncée au survol */
}

/* Masquer le bouton quand il est caché */
.hidden {
    display: none;
}

/* Style pour le champ de saisie countcase */
.countcase {
    width: 80px; /* Largeur ajustée */
    padding: 5px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease;
}

.countcase:focus {
    border-color: #4CAF50; /* Couleur verte sur focus */
    outline: none; /* Retirer le contour par défaut */
}
