html, body {
    background-color: #e6e6e6fe !important;
    display:flex;
    flex-direction: column; 
    min-height: 100vh;
    font-family: "Big Shoulders", sans-serif;
}
h1, h2, h3, h4{
      text-align: center !important; 
      color: #333 !important;
      font-weight: bold !important;
    }
nav{
    width: 100%;
    height: 70px;
    position: relative;
    }
/* pour bouton se deconnecter et aussi pour uploader un fichier*/
.bouton_autre_valider{
  
  color: #0c6950;
  border: 2px solid #0c6950;
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;

}


.full-page{
    min-height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px; 
    box-sizing: border-box;

}


.box-login{
 width: 100%;

 padding:20px;
 background-color: white;
 border-radius: 15px;
}
.message-error{

  color:red;
}
form {
    display: flex;
    justify-content: center;
    align-items: center;  
    padding: 20px;
    margin:auto;
    flex-direction: column;
  }
 .form-box {
    display: flex;
    justify-content: center;
    align-items: center;  
 }
.font-weight-bold{
    font-weight: bold;
  }
 .image{
    overflow: hidden;
 }
   .image img{
    max-width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
  }
  .form-champs {
    display: flex;
    flex-direction: column; 
    width: 80%;
    justify-content: flex-start; 
    max-width: 1000px;
  }
 
.section-valider{
    display: flex;
    justify-content: flex-end; /* Aligne le bouton à droite */
   
  }
 /*pour tous les boutons pour accéder à la page suivante*/
  .valider{
    padding: 6px 15px;    
    
    color: white;   
    border: none;   
    cursor: pointer; 
    font-weight: bold;       
    /* font-size: 15px;  */
    border-radius: 5px;
    background-color: #0c6950;
    text-decoration: none;
  }

/* Partie import fichier */
.page-depot-fichier{
   font-family: Arial, sans-serif;
      width: 100%;
      min-height: 500px;
      /* margin: 60px auto 30px auto; */
      /* margin-top: 20px; */
      padding: 30px;
      border: 1px solid #ddd;
      border-radius: 10px;
      background-color: #f9f9f9;

}
/* .page-depot-fichier h2 {
      text-align: center;
      color: #333;
      font-weight: bold;
    } */

.zone-import {
    width: 100%; 
    max-width: 800px; 
    height: 400px;
    border: 2px dashed #0c6950;
    border-radius: 10px;
    padding: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: #0c6950;
    margin-top: 20px;
    text-align: center;
    /* flex-direction: column; */
    /* align-items: center; */
    /* box-sizing: border-box; */
}
.text-drop{
  font-size: 200%;   
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80%;
}
.bouton-import{
  margin-top: 10px;
}


/* .custom-file-upload {
      display: inline-block;
      padding: 10px 20px;
      cursor: pointer;
      background-color:#0c6950;
      color: white;
      border-radius: 5px;
      margin-top: 15px;
      transition: background-color 0.3s ease;
    } */


.error-message {
color: red;
 margin-top: 15px;
 }

/* Partie table vue des premières lignes */


.table-wrapper {
    overflow-x: auto;
    max-width: 100%;
}

.table-wrapper table {
    border-collapse: collapse;
    white-space: nowrap;
    width: auto;
    /* border: 2px solid #000 */
}


/* .table-wrapper th,
.table-wrapper td {
  padding: 8px;
  white-space: nowrap;
} */


.table-wrapper th{
    
    text-align: center;
    background-color: #f2f2f2; 
}
.table-wrapper td {
    text-align: left;
 
}

.row.align_bouton {
  margin-top: 20px;
}

/* Partie association */

.liste-boites {
    width: 100%;
}

.boite-association {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: stretch;
    height: 150px;
    width: 100%; 
    box-sizing: border-box;
  }

  .boite-association .col {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

/* Dans les listes déroulante désactivé*/

select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  font-size: 16px;
}


.custom-select option:disabled{
  background-color:#f8d7da;
  color:#58151c;
}

/* .select-wrapper {
  width: 100%;
  position: relative;
} */



/*page email */

#email{
  color:#0c6950;
}

/* .bloc-email{
  width: 50%;
  
} */
.bloc-email input{
  text-align: center;
}