/* Styles généraux pour la page des primes */
#afficher_primes {
    margin: 20px;
    font-family: Arial, sans-serif;
}

#afficher_primes h2 {
    text-align: center;
    font-size: 24px; /* Taille du texte du titre */
    margin-bottom: 20px;
}
#afficher_primes h3 {
    text-align: center;
    font-size: 32px; /* Taille du texte du titre */
    margin-bottom: 20px;
}

/* Style du tableau des primes */
#afficher_primes table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

#afficher_primes table th, #afficher_primes table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
	white-space: nowrap;
	
}
#afficher_primes table td {
background: #2a2c2c;
}
#afficher_primes table th {
    background-color: #154782;
    font-weight: bold;
}

#afficher_primes table tr:nth-child(even) {
    background-color: #f9f9f9;
}

#reinitialiser_primes {
    background-color: #a80710 ; /* Rouge */
    font-size: 18px; /* Taille du texte du bouton */
    padding: 15px 30px; /* Espacement interne plus grand */
}

#reinitialiser_primes:hover {
    background-color: #a80710 ;
}

#envoyer_primes {
    background-color: #28a745; /* Vert */
    font-size: 18px; /* Taille du texte du bouton */
    padding: 15px 30px; /* Espacement interne plus grand */
}

#envoyer_primes:hover {
    background-color: #218838;
}

/* Espacement du formulaire */
#reinitialiser_primes_form {
    text-align: center; /* Centrer les boutons dans le formulaire */
    margin-top: 20px;
}

#reinitialiser_primes_form button {
    margin: 0 10px; /* Espacement entre les boutons */
}
