/* Dropdown Button */
.dropfiltbtn {
    color: rgb(0, 0, 0);
    background-color: #e7e5e5;
    padding: 5px;
    font-size: 14px;
    border: 1px solid #000000;
    border-radius: 2px;
    z-index: 10;
    vertical-align: top;
  }
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown_filters {
    color:#000000;
    position: relative;
    left: 0px;
    display: inline-block;
    z-index: 10;
    vertical-align: top;
    padding: 10px;
    border: 3px solid #000000;
    border-radius: 10px;
  }
  
    /* Dropdown Content (Hidden by Default) */
    .dropdown_filters_content {
    display: none;
    position: absolute;
    background-color: transparent;
    left: -300px;
    min-width: 1000px;
    box-shadow: 0px 8px 16px 0px rgb(0, 0, 0);
    border: 3px solid #919191;
    z-index: 10;
    border-radius: 8px;
    padding: 10px;
    vertical-align: top;
  }

  /* Dropdown Content (Hidden by Default) */
  .dropdown_filters_checkboxes {
      column-count: 1; /* Nombre de colonnes */
      column-gap: 20px; /* Espacement entre les colonnes */
      background-color: transparent;
      color: rgb(0, 0, 0);
    z-index: 10;
    padding: 10px;
    text-align: left;
    vertical-align: top;
  }


.dropdown_filters_checkboxes .styled-checkbox-label {
  margin-bottom: 1px; /* Réduire la marge entre les checkboxes */
}
  
  /* Links inside the dropdown */
  .dropdown_filters_checkboxes a {
    color: rgb(0, 0, 0);
    padding: 5px;
    margin-left: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 8px;
  }

  /* Checkbox for years */
  .dropdown_filters_years {
    column-count: 2; /* Nombre de colonnes */
    column-gap: 20px; /* Espacement entre les colonnes */
    background-color: transparent;
    color: rgb(0, 0, 0);
  z-index: 10;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}

  /* Checkbox tags */
  .dropdown_filters_tags {
    column-count: 3; /* Nombre de colonnes */
    column-gap: 20px; /* Espacement entre les colonnes */
  background-color: transparent;
  color: rgb(0, 0, 0);
  z-index: 10;
  padding: 10px;
  text-align: left;
  vertical-align: top;
}


/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown_filters:hover .dropfiltbtn {
    background-color: #cccccc;
    color: black;
}

.checkbox-label:hover {
    color: #8c90a9; /* Changez cette valeur pour la couleur de votre choix */
    cursor: pointer; /* Change le curseur en main au survol pour indiquer qu'il est cliquable */
}

.select-styles {
  width: 100%;
}

/* Ajouté pour afficher la liste à cocher */
.checkbox-styles {
  display: none;
  position: fixed;
  width: 80%;
  height: 70%;
  left: 15px;
  top: 50px;
  padding: 10px 10px;
  z-index: 999; /* Assurer que la liste déroulante est au-dessus des autres éléments */
  background-color: #d5d5d5;
  border: 3px solid #000000;
  border-radius: 10px;
  opacity: 1;
  overflow:visible;
  vertical-align: top;
}

.checkbox-styles.show-styles {
  display: block;
  z-index: 1000; /* Assurer que la liste déroulante est au-dessus des autres éléments */

}

.checkbox-styles label {
  display: block;
  margin: 0px 0px; /* Ajuster la marge intérieure pour séparer les options */ /* Largeur pour deux colonnes */
}

.checkbox-styles label input {
  margin-right: 5px;
}
