/* Style pour le corps */
body {
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Style pour la page principal */
/* Style pour l'en-tête */
.logo{
  width: 76px;
  height: 76px;
  margin:-15px;
}

.en_tete {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #002244;
  padding: 20px;
  color: white;
}

.en_tete_gauche{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.en_tete_droite{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

.deconnexion{
  width: 100%;
  height: 100%;
  background:url('../img/bouton_deconnexion.png') no-repeat;
  background-size: contain;

}
.deconnexion:hover{
  background: url('../img/bouton_deconnexion_survoler.png') no-repeat;
  background-size: contain;
}

.en_tete input[type="month"] {
  padding: 10px;
  border: 1px solid #999999;
  border-radius: 5px;
  font-size: 16px;
}
.en_tete input[type="month"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    display: block;
    background: url('../img/calendar_icon.png') no-repeat;
    background-size: contain; /* Adapter l'image */
    width: 20px;
    height: 20px;
    border-width: thin;
}
.espace {
  width:20px;
}
.fond_blanc {
  background:white;
  padding: 2px;
  border: 1px solid #999999;
  border-radius: 5px;
  font-size: 16px;
  width: 40px;
  height: 40px;
}
.imgTelechargement{
  opacity:0;
  width: 100%;
  height: 100%;
  
}
.telechargement{
  width: 100%;
  height: 100%;
  background:url('../img/bouton_telechargement.png') no-repeat;
  background-size: contain;
  
}
.telechargement:hover{
  background: url('../img/bouton_telechargement_survoler.png') no-repeat;
  background-size: contain;
}
/*Fin en tete*/

/* Style pour le contenu */
.corps{
  background: linear-gradient(-45deg, #ff57f1, #ffee33);
  width: 100%;
  height: 90.1%;
}
/* Fin contenu */

.contenaire_choix_format{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 20px;
}

.choix_format{
  background: rgba(245, 245, 245, 0.9);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  padding: 5px;
}
.choix_format th,
.choix_format td{
  text-align: center;
  vertical-align: middle;
  padding: 5px;
}

.info_format{
  background: rgba(245, 245, 245, 0.9);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  padding: 5px;
}
.info_format th,
.info_format td{
  text-align: center;
  vertical-align: middle;
  padding: 5px;
}

.rondInfo{
    width: 25px;
    height: 25px;
}

/* Fin page principal */

/*page connexion*/
.placementConnexion{
  background: linear-gradient(-45deg, #ff57f1, #ffee33);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.login-container {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
  text-align: center;
}

.align {
  display: flex;
  flex-direction: row;
  align-content: space-around;
  align-items: center;
}

.login-container input[type="text"],
.login-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.login-container input[type="submit"] {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

.login-container input[type="submit"]:hover {
  background-color: #0056b3;
}

/* Style pour le logo */
.logoConnexion {
  width: 100px;
  /* Largeur fixe */
  height: 100px;
  /* Hauteur fixe */
  margin: 15px;
  /* Marge autour du logo */
}
/*fin page connexion*/
