/* Réinitialisation des styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }

  
  body {
    font-family: "Noto Sans", sans-serif;
  }
  
  header {
    background-color: #333; 
    color: #fff; 
    padding: 10px 20px; 
    ;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    border-bottom: 1px solid white;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
  }

  footer{
    background-color: #333; 
    color: #fff; 
    padding: 10px 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    width: 100%;
    z-index: 1000;
  }

  hr{
    border: 0;
    border-top: 1px solid #e7e6e6;
    margin: 10px auto;
  }

  h1{
    display:block;
    margin-block-start: 0.70em;
    margin-block-end: 0.70em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
    font-size: 2em;
  }

  h2{
    font-size: 1.25em;
    font-weight: normal;
  }

  h3{
    font-size: 1.5em;
    font-weight: bold;
  }

  p{
    display:block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 1.5em;
  }

  mark{
    background-color: rgb(5, 172, 88);
    color: inherit;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
  }

  input{
    background-color: white;
    border-radius: 25px;
    caret-color: black;
    color: black;
    width: 100%;
  }

  img{
    border-style: none;
    display: block;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: cover;
    object-position: cover;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  li{
    list-style-type: none;
  }

  .logo {
    display: flex; 
    align-items: center; 
    width: 50%;
  }
  
  .logo img {
    height: 40px; 
    width: 80px; 
  }
  
  .header-menu,
  .footer-menu {
    list-style-type: none; 
    white-space: nowrap; 
  }
  
  .header-menu li,
  .footer-menu li{
    display: inline; 
    margin-left: 20px; 
    white-space: nowrap; 
  
}
  
    .header-menu li a,
    .footer-menu li a{
    color: #fff; 
    text-decoration: none; 
    padding: 10px 10px; 
    align-items: center;
    border-radius: 5px;
    
  }

  input[readonly] {
    background-color: #d4d4d4;
    cursor: not-allowed;
}
  
  .header-menu li a:hover {
    background-color: #555;
  }

  i{
    font-size: 20px;
  }

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 900; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 50%; /* Could be more or less, depending on screen size */
    text-align: center;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

  .search-bar {
    display: none;
    position: fixed;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    top: 60px; /* Ajustez cette valeur selon la hauteur de votre header */
}

.modal-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.modal select,
.modal textarea,
.modal button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  box-sizing: border-box;
}
.modal textarea {
  height: 200px;
  resize: none;
}
.modal button {
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}
.modal button:hover {
  background-color: #45a049;
}

.search-bar.active {
    display: block;
    z-index: 900;
}

.search-bar form {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; /* Ajustez cette valeur selon vos besoins */
    margin: 0 auto; /* Centre le formulaire horizontalement */
}

.search-bar input[type="text"] {
    width: calc(100% - 60px); /* Ajustez cette valeur pour compenser la largeur du bouton */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.search-bar button {
    background: darkgreen;
    color: #fff;
    border: none;
    width: 40px; /* Fixez la largeur du bouton */
    height: 40px; /* Fixez la hauteur du bouton pour garder un aspect carré */
    border-radius: 4px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

  .user-panel {
    position: fixed;
    top: 60px; /* Ajustez en fonction de la hauteur de votre header */
    right: 0;
    width: 300px;
    max-width: 100%;
    background: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    transition: transform 1s ease;
    transform: translateY(-100%);
    border-radius: 10px;
    text-align: center;
    display: none; 
    margin: 10px 10px;
  }

  .user-panel.active {
      transition: transform 1s ease;
      transform: translateY(0);
      display: block;
      z-index: 1000;
  }

  .user-panel-content {
      padding: 20px;
  }

  .user-panel-content p {
    font-size: 1.25em;
    font-weight: bold;
    color: darkgreen;
  }

  .error-p{
    color: red;
    font-size: 1em;
    font-weight: normal;
  }

  .btn-default{
    background-color: darkgreen;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 20px 0;
    display: inline-block;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }

  .link-connexion{
    text-align: left;
    color: black;
    font-size: 1em; 
    text-decoration: none;
  }

  .input-connexion,
  .input-add-location{
    border: none;
    margin: 10px 0px;
    padding: 10px 10px;
    border-radius: 0px;
    border-bottom: 1px solid darkgreen;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .input-with-icon {
    display: flex;
    flex: 2;
    flex-grow: 1.6;
    align-items: center;
  }

  

  .input-add-location {
      flex-grow: 1;
  }

  .edit-icon {
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      color: #555;
      font-size: 16px;
  }

  .link-connexion{
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  .input-with-icon input{
    margin-right: 10px !important;
  }

  .input-with-icon i{
    flex: 0.5 !important;
    color: darkgreen;
  }

  main{
    display: block;
    width: 100%;
  }

  .site-banner{
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #1ec677 center bottom / cover no-repeat;
    color: white;
    display: flex;
    height: 600px;
    position: relative;
    width: 100%;
  }

  .site-banner-content{
    position: relative;
    width: 710px;
    z-index: 2;
  }

  .site-banner-title{
    text-align: center;
  }

  .site-banner-desc{
    text-align: center;
  }
  
  .container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:1200px; /*ici faudra mettre une variable*/
  }

  /* Medium screens */
  @media (max-width: 1200px) {
    .container {
        width: 1000px;
    }
  }

  /* Small screens */
  @media (max-width: 1000px) {
    .container {
        width: 800px;
    }
  }

  /* Extra small screens */
  @media (max-width: 800px) {
    .container {
        width: 100%;
    }
  }

  .container_800 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:800px; /*ici faudra mettre une variable*/
  }

  .hr-more-vegefinder{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width:800px;
  }

  .search-form{
    padding:0 40px;
    width: 100%;
  }

  .search-form .search-form-wrapper{
  
    position: relative;
    width: 100%;
  }

  .search-wrapper{
    z-index: 10;
  }

  .description-card{
    font-weight: 500;
    margin-top: 10px;
    margin-left: 5px;
  }

  .description-card p{
    font-size: 1em ;
  }

  /* Medium screens */
  @media (max-width: 1200px) {
    .description-card p{
      font-size: 0.8em ;
    }
  }

  @media (max-width: 1000px) {
    .description-card p{
      font-size: 0.7em ;
    }
  }

  @media (max-width: 800px) {
    .description-card p{
      font-size: 0.6em ;
    }
  }

  .description-petition{
    font-size: 1em;
  }

  .button-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 10px 0 !important; 
}

.button-container-margin{
  margin: 10px 40px !important; 
}

.link-btn {
  all: unset !important; /* Enlever tous les styles par défaut */
  display: inline-block !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  color: white !important;
  background-color: darkgreen !important;
  border-radius: 5px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: background-color 0.15s !important;
  margin: 0 auto !important; /* Ajout de la marge automatique */
}

  @media (max-width: 800px) {
    .link-btn {
      width: 50%;
      padding: 10px 15px;
      font-size: 14px;
    }
  }

  .link-btn:hover {
    background-color: green;
  }

  .link-card{
    margin: 10px 5px;
    text-decoration: none;
  }

  .link-card-element{
    color: darkgreen;
    font-size: 1.25em;
    font-weight: bold;
    text-decoration: none;
    padding-left: 5px;
  }

  .link-card-map-element{
    color: darkgreen !important;
    font-size: 1.25em !important;
    font-weight: bold !important;
    text-decoration: none !important;
    padding: 20px 2.5px !important;
  }

  .social-restaurant{
    margin-top: 10px;
  }

  .time-end-card{
    font-size: 0.8em;
    font-weight: 500;
    margin: 10px 5px;
  }

  @media (max-width: 1200px) {
    .time-end-card{
      font-size: 0.7em;
    }
  }

  @media (max-width: 1000px) {
    .time-end-card{
      font-size: 0.6em;
    }
  }

  .time-start-card{
    font-size: 0.8em;
    font-weight: 500;
    margin: 10px 5px;
  }

  @media (max-width: 1200px) {
    .time-start-card{
      font-size: 0.7em;
    }
  }

  @media (max-width: 1000px) {
    .time-start-card{
      font-size: 0.6em;
    }
  }

  .field-wrapper{
    position: relative;
  }

  .search-wrapper input{
    border: none;
    -webkit-box-shadow: 0px 8px 7px 0px rgba(0,0,0,0.5); 
    box-shadow: 0px 8px 7px 0px rgba(0,0,0,0.5);
    padding: 10px 24px 10px 50px;
    font-size: 1.2em;
    margin-bottom: 20px;
  }

  .icon-field{
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: darkgray;
    display: flex;
    height: 20px;
    width: 20px;
    justify-content: center;
    position: absolute;
    transform: translateY(-100%);
    left: 20px;
    top: 50%;
    right: auto;
  }

  .location-button-container{
    margin-top: 1rem;
  }

  .map-link{
    position: relative;
    padding: .25rem .5rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    border-radius: 25px;
    text-align: center;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 800px) {
    .map-link {
        width: 50%;
    }

    .map-link h2{
      font-size: 1em;
    
    }
}

  .map-link i{
    padding: 0 10px;
  }

  .site-main{
    margin-top: 20px;
  }

  .lists-information-vegefinder{
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

/* Extra small screens */
@media (max-width: 800px) {
  .lists-information-vegefinder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 20px; /* Ajoute un espace entre les éléments */
    text-align: center; /* Centrer le texte */
  }
}

.information-vegefinder{
  width: 32%;
}

@media (max-width: 800px) {
  .information-vegefinder{
    width: 100%;
  }
}

.information-heading{
  display: inline-flex; /* Adapte la taille du conteneur à son contenu */
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.information-icon{
  align-items: center;
  background: white;
  border: 4px solid rgb(245, 245, 245);
  border-radius: 25px;
  display: flex;
  height: 70px;
  padding: 10px;
  width: 70px;
  margin: 0 auto; /* Centre l'icône horizontalement */
}

.logo-wrapper{
  width: 60px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 180px; /* Définir une hauteur fixe ou adaptative */
  overflow: hidden; /* Masquer les parties des images qui dépassent */
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Assurer que l'image couvre toute la zone sans déformer */
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  border: none;
  background-color: rgba(0,0,0,0.25);
  display: none; /* Hidden by default */
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
  z-index: 100;
}

.next {
  right: 0;
  border-radius: 3px 3px 0 0;
  z-index: 100;
}

.image-wrapper:hover .prev,
.image-wrapper:hover .next {
    display: block; /* Show buttons on hover */
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.listing-item {
  position: relative;
  /* Autres styles existants */
}

.star-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none !important;
  z-index: 100;
}

.star-icon-map {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  display: none !important;
  z-index: 100;
}

.star-icon.active,
.star-icon-map.active {
  color: yellow; /* Couleur de l'étoile active */
}

.listing-item:hover .star-icon,
.leaflet-popup-content-wrapper:hover .star-icon-map {
  display: block !important;
}

.information-heading h3{
  margin-left: 10px;
  text-align: center; /* Centre le texte */
}

.content-information p{
  font-weight: 500;
  text-align: center; /* Centre le texte */
  font-size: 1.15em;
}

  .section-content{
    margin-left: -20px;
    margin-right: -20px;
    padding: 40px 40px;
    position: relative;
    width: calc(100% + 40px);
  }

  /* Medium screens */
  @media (max-width: 1200px) {
    .section-content {
        margin-left: -15;
        margin-right: -15;
        padding: 30;
        width: calc(100% + 30px);
    }
  }

  /* Medium screens */
  @media (max-width: 1000px) {
    .section-content {
        margin-left: -10;
        margin-right: -10;
        padding: 20;
        width: calc(100% + 20px);
    }
  }

  /* Small screens */
@media (max-width: 800px) {
  .section-content {
      margin-left: -5;
      margin-right: -5;
      padding: 10;
      width: calc(100%);
  }

  .section-menu-updated{
    margin: 0;
  }
}

  .link-more-info{
    color: grey;
    text-decoration: none;
    font-size: 1.35em;
    font-weight: bold;
    margin : 20px 0;
  }

  .link-arrow{
    color: gold;
    font-size: 1.25em;
    padding: 0 10px;
  }

  .header-section-content{
    margin-bottom: 32px;
    align-items: center;
    display: flex;
  }

  .title-section-content{
    padding-right: 10px;
  }

  .more-menu{
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8em;
    color:green; 
    text-decoration: underline;
  }

  .listing-block{
    flex-wrap: nowrap;
  }

  .listing{
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: flex;
    flex-flow: row nowrap;
    overflow: hidden;
  }

  @media (max-width: 800px) {
    .listing {
      width: 100%;
      justify-content: center;
    }
  }

  .listing-item{
    min-width: 280px;
    width: 280px;
    -webkit-box-shadow: 0px 8px 7px 0px rgba(0,0,0,0.5); 
    box-shadow: 0px 8px 7px 0px rgba(0,0,0,0.5);
    border-radius: 10px;
    padding-bottom: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }

  @media (max-width: 1200px) {
    .listing-item {
      min-width: 24%;
      width: 24%;
    }
  }

  @media (max-width: 1000px) {
    .listing-item {
      min-width: 30%;
      width: 30%;
    }
    .listing-item:nth-child(4) {
      display: none;
    }
  }

  @media (max-width: 800px) {
    .listing-item {
      min-width: 30%;
      width: 30%;
    }
    .listing-item:nth-child(4) {
      display: none;
    }
  }

  .listing-block .thumbnail-listing-list{
    height:175px;
    width: 100%;
  }

  @media (max-width: 1200px) {
    .listing-block .thumbnail-listing-list{
      height:175px;
      width: 100%;
    }
  }

  @media (max-width: 1000px) {
    .listing-block .thumbnail-listing-list{
      height:175px;
      width: 100%;
    }
  }

  @media (max-width: 800px) {
    .listing-block .thumbnail-listing-list{
      height:140px;
      width: 100%;

    }
  }

  .listing .thumbnail-listing-list{
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
  }

  .content-listing{
    padding: 10px;
    min-height: 250px;
  }

  .thumbnail-listing-home{
    margin-bottom: 20px;
  }

  .title-listing{
    display: block;
    font-size: 1.25em;
    font-weight: bold;
    position: relative;
  }

  .clock {
    position: relative; /* Assurer que l'icône est positionnée par rapport à son conteneur */
    cursor: pointer; /* Changer le curseur pour indiquer qu'il est cliquable */
}

.hover-panel {
    display: none; /* Cacher par défaut */
    position: absolute; /* Positionner par rapport à l'élément parent */
    top: 50%; /* Aligner avec le bas de l'icône */
    left: 60%; /* Aligner avec le bord gauche de l'icône */
    transform: translateY(-50%); /* Ajuster légèrement vers le bas pour éviter le chevauchement */
    padding: 10px;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000; /* S'assurer que le panel soit au-dessus des autres éléments */
    white-space: nowrap; /* Empêcher la casse des lignes dans le panneau */
}

.hover-panel p {
    margin: 0;
    font-size: 10px;
}

/* Afficher le panneau au survol de l'icône ou du panneau */
.clock:hover + .hover-panel,
.hover-panel:hover {
    display: block;
}

.day-container {
  display: flex;
  align-items: center; /* Aligne verticalement les éléments */
  margin-bottom: 7px; /* Espace entre les jours */
}

.day-title {
  font-weight: bold;
  margin-left: auto; /* Pousse le texte vers la droite */
  margin-right: 10px; /* Espace entre le jour et les horaires */
  text-align: right; /* Aligne le texte à droite */
  width: 60px; /* Ajustez la largeur selon vos besoins */
}

.day-schedule {
  font-style: italic;
  text-align: center; /* Centre le texte à l'intérieur de son propre conteneur */
  flex: 1;
  margin-left: 10px !important; /* Marge pour espacer de la day-title si nécessaire */
}

.day-schedule.closed {
  color: red; /* Par exemple, pour les jours fermés */
}

  .title-listing a{
    color: darkgreen;
    text-decoration: none;
    font-size: 1.25em;
    margin-left: 5px;
    text-transform: capitalize;
  }

  @media (max-width: 1200px) {
    .title-listing a{
      font-size: 1em;
    }
  }

  @media (max-width: 1000px) {
    .title-listing a{
      font-size: 1.05em;
    }
  }

  .lists-restaurant-shown-home{
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    font-size: 0.9em;
    line-height: 1;
    list-style: none;
    margin-top: 10px;
  }

  .lists-restaurant-shown-home li+li{
    margin-left: 10px;
  }

  .number-shown{
    display: inline-block;
    font-weight: bold;
    margin-right: 5px;
    margin-left: 5px;
    padding: 5px;
    position: relative;
    text-align: center;
    width: 30px;
    border: 1px solid grey;
  }

  @media (max-width: 1200px) {
    .number-shown{
      font-size: 0.8em;
      width: 25px;
    }
  }

  @media (max-width: 1000px) {
    .number-shown{
      font-size: 0.7em;
    }
  }

  .name-shown{
    display: inline-block;
    padding-right: 5px;
  }

  @media (max-width: 1200px) {
    .name-shown{
      font-size: 0.8em;
    }
  }

  @media (max-width: 1000px) {
    .number-shown{
      font-size: 0.7em;
    }
  }

  .vegetal-shown{
    display: inline-block;
    padding: 0 10px;
  }

  @media (max-width: 1200px) {
    .vegetal-shown{
      font-size: 0.8em;
    }
  }

  @media (max-width: 1000px) {
    .vegetal-shown{
      font-size: 0.7em;
    }
  }

  .clock{
    font-size: 0.8em;
    color: darkgreen;
    margin: 0 10px;
  }

  .info-restaurant{
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    margin-top: 10px;
  }

  .review-element{
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    margin-left: 5px;
  }

  .star-on{
    background: darkgreen !important;
    z-index: 100;
  }

  

  .star{
    box-sizing: border-box;
    border: 2px solid white;
    box-shadow: 0 0 0 2px darkgreen;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    margin:0 3px;
  }

  .star-count{
    font-size: 14px;
    margin-left: 5px;
  }

  @media (max-width: 1200px) {
    .star-count{
      font-size: 12px;
      margin-left: 2px;
    }

  }


  @media (max-width: 1000px) {
    .star-count{
      font-size: 10px;
      margin-left: 2px;
    }

  }

  .label-review{
    padding-left: 5px;
    font-size: 0.9em;
    padding-right: 10px;
  }

  .review-restaurant {
    position: relative;
    min-width: 100px;
}

.review-element,
.label-review {
    transition: opacity 0.1s;
}

.rating-hover {
  display: none;
  position: absolute;  /* Utilisation de position absolue */
  left: 0;
  top: 20%;  /* Positionne juste en dessous de l'élément parent */
  margin-left: 5px;
}

.circle {
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    transition: background-color 0.3s;
}

.review-restaurant:hover .review-element,
.review-restaurant:hover .label-review {
    opacity: 0;
}

.review-restaurant:hover .rating-hover {
    display: block;
}

  .space-line{
    display: inline-block;
    margin: 0 10px;
    font-size: 1.2em;
  }

  @media (max-width: 1200px) {
    .space-line{
      margin: 0 2px;
      font-size: 1.15em;
    }
  }

  @media (max-width: 1000px) {
    .space-line{
      display: none;
    }
  }

  .cta-menu-restaurant{
    border: none;
    background: none;
    justify-content: center;
    align-items: center;
    display: flex;
    color: green;
    cursor: pointer;
  }

  @media (max-width: 1200px) {
    .cta-menu-restaurant{
      margin-left: 5px;
      font-size: 0.8em;
    }

    .cta-menu-restaurant i{
      font-size: 1.2em;
    }
  }

  @media (max-width: 1000px) {
    .cta-menu-restaurant{
      margin-left: 5px;
      font-size: 0.8em;
    }

    .cta-menu-restaurant i{
      font-size: 1.2em;
    }
  }

  @media (max-width: 765px) {
    .cta-menu-restaurant{
      margin-top: 5px !important;
    }
  }

  .cta-menu-restaurant i{
    padding-right: 5px;
  }

  .adress-restaurant{
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    margin-top: 10px;
    padding-left: 5px;
    position: relative;
  }

  .adress-restaurant .icon-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.5em;
  }

  .adress-restaurant .icon-right-sided {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.5em;
  }

  .icon-right-profil{
    color: green;
    width: 100%;
    text-align: end;
    justify-content: end;
  }

  .adress-restaurant i{
    color: green;
    font-size: 0.8em;
    padding-right: 5px;
  }

  .adress-restaurant span{
    font-size: 0.8em;
  }

  @media (maxwidth: 1200px) {
    .adress-restaurant span{
      font-size: 0.7em;
    }
  }

  @media (max-width: 1000px) {
    .adress-restaurant span{
      font-size: 0.6em;
    }
  }



  .updated-restaurant{
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    margin-top: 10px;
    padding-left: 5px;
    position: relative;
  }

  .updated-restaurant .icon-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.updated-restaurant .icon-right:hover {
  color: rgb(255, 174, 0);
}

  .updated-restaurant span{
    font-size: 0.7em;
    font-style: italic;
  }

  @media (max-width: 1200px) {
    .updated-restaurant span{
      font-size: 0.6em;
    }
  }

  @media (max-width: 1000px) {
    .updated-restaurant span{
      font-size: 0.5em;
    }
  }

  .header-section-content-block{
    margin-bottom: 32px;
  }

  .section-content-block .title-section-content{
    font-size: 2.25em;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
  }

  @media (max-width: 1000px) {
    .section-content-block .title-section-content{
      margin-bottom: 10px;
    }
  }

  @media (max-width: 800px) {
    .section-content-block .title-section-content{
      margin-bottom: 5px;
    }
  }

  .title-section-content .subtitle-section{
    display: block;
    font-size: 0.9em;
    font-weight: lighter;
  }

  .row-block{
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .row-block .col-block-content{
    font-weight: 500;
    height: 370px;
    position: relative;
  }

  .block-content{
    margin: 0;
    position: absolute;
    top:50%;
    transform: translateY(-50%);
  }

  .row-block .col-block-content,
  .row-block .col-block-media{
    width: calc(50% - 20px);
  }

  .col-block-content p{
    font-size: 1em;
  }

  @media (max-width: 800px) {
    .col-block-media img{
      margin-top: 60px;
    }
  }

  .button-add-restaurant{
    margin-top: 1rem;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .add-restaurant{
    position: relative;
    padding: .25rem .5rem;
    color: darkgreen;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid darkgreen;
    border-radius: 25px;
    text-align: center;
    width: 50%;
    padding: 10px;
  }

  @media (max-width: 1000px) {
    .add-restaurant {
        width: 75%;
    }
  }

  @media (max-width: 800px) {
    .add-restaurant {
        width: 100%;
    }
  }

  .add-restaurant i{
    padding-right: 10px;
  }

  .newsletter-wrapper{
    background-color: #eefded;
    border-top: 1px solid #e7e6e6;
    border-bottom: 1px solid #e7e6e6;
    margin: 50px 0;
    padding: 40px;
    position: relative;
    text-align: center;
  }

  .newsletter-wrapper p{
    font-size: 1.25em;
  }

  .newsletter-form{
    margin: 20px auto 0;
    max-width: 100%;
    position: relative;
    text-align: center;
    width: 500px;
  }

  .newsletter-form input{
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid darkgreen;
    padding-right: 136px;
    border-bottom-right-radius: 10px;
    font-size: 1rem;
    padding-top: 14px;
    padding-bottom: 16px;
    padding-left: 15px;
  }

  

  .newsletter-form .submit{
    border-radius: 0px;
    border: none;
    background: none;
    height: 100%;
    padding-left: 20px;
    position: absolute;
    right: 0;
    top: 0;
    padding-top: 14px;
    padding-bottom: 16px;
    padding-right: 20px;
    font-weight: bold;
    color: white;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    background-color: darkgreen;
    font-size: 1rem;
    cursor: pointer;
  }

  .footer-information{
  background-color: rgb(243, 243, 243);
  }

  @media (max-width: 1000px) {
    .footer-information {
        display: none;
    }
  }

  .footer-information-content
  {
    max-width: 1200px; 
    margin: 20px auto;
    margin-bottom: 0;
    align-items: center;
  }

  .footer-information-wrapper {
    display: flex;
    width: 1200px;
    justify-content: space-between; 
    padding-left: 20px;
  }

  /* Medium screens */
  @media (max-width: 1200px) {
    .footer-information-wrapper {
      width: 1000px;
      padding-left: 15px; /* Ajuster le padding si nécessaire */
    }
  }

  /* Small screens */
  @media (max-width: 1000px) {
    .footer-information-wrapper {
      width: 800px;
      padding-left: 10px; /* Ajuster le padding si nécessaire */
    }
  }

  /* Extra small screens */
  @media (max-width: 800px) {
    .footer-information-wrapper {
      width: 100%; /* Utiliser toute la largeur disponible */
      padding-left: 5px; /* Ajuster le padding si nécessaire */
      flex-direction: column; /* Empiler les éléments verticalement si nécessaire */
      align-items: center; /* Centrer les éléments */
    }
  }
  
  .footer-information-item {
    flex: 1;
    margin-right: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer-information-item h3 {
    font-size: 1.2em;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .footer-information-item span{
    cursor: pointer;
  }

  .footer-information-item li::marker {
    color: darkgreen;
  }

  .footer-information-item a,
  .footer-information-item p{
    font-size: 1em;
    margin-bottom: 30px;
    text-decoration: none;
    color: black;
  }

  .footer-information-item li{
    margin: 10px 0;
  }

  .don-btn{
    background-color: darkgreen;
    color: white !important;
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 40px;
  }

  .footer-information-item a i{
    padding-right: 10px;
  }

  .no-bullet{
    list-style-type: none;
  }
  
  .footer-information-item:last-child {
    margin-right: 0;
  }

  .d-flex{
    display: flex !important;
  }

  .justify-content-center{
    justify-content: center !important;
  }

  .bl-0{
    border-left-width: 0;
  }

  .br-0{
    border-right-width: 0;
  }

  .bt{
    border-top: 1px solid #e7e6e6;
  }

  .bb{
    border-bottom: 1px solid #e7e6e6;
  }

  .tc{
    text-align: center;
  }

  .align-items-center{
    align-items: center;
  }

  .listing-item hr{
    border: 0;
    border-top: 1px solid grey;
    margin: 10px auto;
    width: 95%;
  }

  input:focus{
    outline: none;
  }

  /* MAP */

  #map {
     height: 100vh; 
  }

  .cluster-div{
    background-color: white;
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    box-shadow: 0 0 0px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
  }

  .leaflet-popup-content{
    width: 250px;
  
  }
  

  .image-wrapper img {
    width: 100%;
    height: 170px !important;
  }

  .map-popup-title{
    color: darkgreen;
    font-size: 1.25em;
    font-weight: bold;
    margin-top: 10px !important;
  }

  .leaflet-control-custom a {
    display: flex;
    justify-content: center;
    align-items: center; /* Pour centrer verticalement */
    height: 100%;
}

.leaflet-control-zoom, .leaflet-control-locate, .leaflet-control{
  border: none !important;
}

.connect-panel {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #4CAF50;
  padding: 10px;
  border-radius: 5px;
  color: white!important;
  cursor: pointer;
  z-index: 1000; /* Ensure the panel is above the map */
}



#panel {
  width: 35%;
  height: 100vh;
  float: right;
  background-color: #f4f4f4;
  border-left: 1px solid #ddd;
  padding: 10px;
  display: none; /* Masquer le panneau par défaut */
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto; /* Permet de défiler si le contenu est trop grand */
  position: absolute; /* Position absolue pour éviter les problèmes de mise en page */
  right: 0; /* Positionner à droite */
  top: 0; /* Positionner en haut */
  z-index: 1000;
}

.close-btn-panel-map {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: #000;
  cursor: pointer;
  z-index: 1001; /* S'assurer que le bouton est au-dessus du reste du contenu */
}

.connect-panel:hover{
  background-color: darkgreen;
}

.connect-panel i{
  color: white;
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out, .leaflet-bar-part,
.leaflet-control-custom, .leaflet-control-custom-square {
  background-color: #4CAF50 !important; /* Change background color */
  color: white !important;              /* Change text color */
  border: none !important;              /* Remove border */
  border-radius: 5px !important;        /* Add rounded corners */
  width: 30px !important;               /* Set button width */
  height: 30px !important;              /* Set button height */
  line-height: 30px !important;         /* Center text vertically */
  text-align: center !important;        /* Center text horizontally */
  font-size: 18px !important;           /* Set font size */
  margin: 2px 0 !important;            /* Add margin */
}

.leaflet-control-custom-square{
  margin-top: 10px !important;
  margin-left: 10px !important;
  font-size: 24px !important;           /* Set font size */
}

.leaflet-control-zoom-in:hover, .leaflet-control-zoom-out:hover, .leaflet-bar-part:hover,
.leaflet-control-custom:hover, .leaflet-control-custom-square:hover  {
  background-color: darkgreen !important; /* Change background color on hover */
}

.leaflet-control-locate-location-arrow{
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="white" d="M445 4 29 195c-48 23-32 93 19 93h176v176c0 51 70 67 93 19L508 67c16-38-25-79-63-63z"/></svg>') !important;
}

/* Pour ajuster la taille de l'icône si nécessaire */
.test-tag {
    margin: 7px;
    color: white !important;
}

.tag-panel {
  display: block;
  position: absolute;
  background-color: white;
  border: 1px solid black;
  padding: 10px;
  z-index: 1000; /* Assurez-vous que le panneau apparaît au-dessus des autres éléments */
}

.tag-checkbox{
  width: 20px;
}

.leaflet-control-custom-circle {
  background-color: white;
  border: 2px solid darkgreen !important; /* Changez la couleur selon vos besoins */
  border-radius: 50% !important;
  width: 80px;
  height: 80px;
  text-align: center;
  line-height: 80px; /* Ajustez selon la taille du bouton */
  color: darkgreen; /* Changez la couleur selon vos besoins */
  font-size: 48px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  cursor: pointer !important;
}

.map-searchbar{
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.map-searchbar input{
  padding: 10px;
  border: none;
  border-bottom: 1px solid darkgreen;
  border-radius: 4px;
  width: 300px;
}

.map-searchbar button{
  background: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 830px) {
  .map-searchbar input{
    width: 200px;
    font-size: 0.65em;
    
  }
  
  .map-searchbar button{
    width: 100px;
    font-size: 0.7em;
    padding: 10px 15px;
  }
}

@media (max-width: 610px) {
  .map-searchbar{
    min-width: 250px;
  }
  .map-searchbar input{
    width: 150px;
    font-size: 0.6em;
  }
  
  .map-searchbar button{
    width: 75px;
    font-size: 0.6em;
    padding: 10px 10px;
  }
}

.input-tag-search{
  margin: 5px 0;
  padding: 5px;
  border: 1px solid black;
  border-radius: 4px;
}

.btn-tag-search{
  background-color: darkgreen;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

/* MORE VEGEFINDER */

.paragraph-container {
  display: flex;
  justify-content: center; /* Adjust the spacing between items */
  align-items: center; /* Center items vertically */
  text-align: center;
  position: relative;
  margin-top: 60px;
  padding: 60px;
  background-color: #1ec677;
  color: #0d4029;
}

.paragraph-container-next{
  display: flex;
  justify-content: center; /* Adjust the spacing between items */
  align-items: center; /* Center items vertically */
  text-align: center;
  position: relative;
  margin: 60px 0;
}

.paragraph-container h1,
.paragraph-container-next h1{
  font-size: 56px;
}

.paragraph-container p,
.paragraph-container-next p{
  font-size: 18px;
}

/* Container for the team elements */
.element-team {
  display: flex;
  flex-wrap: wrap; /* Allows elements to wrap to the next line if necessary */
  justify-content: center; /* Centers elements with space between them */
  gap: 20px; /* Adds space between elements */
  margin: 20px 0;
}

/* Individual team elements */
.team-element {
  flex: 1 1 calc(33.333% - 40px); /* Adjusts the width of each element and manages spacing */
  box-sizing: border-box; /* Includes padding and border in the total width */
  max-width: calc(33.333% - 40px); /* Ensures the max width doesn't exceed 33.333% */
  margin: 10px; /* Space between elements */
}

.team-img,
.team-text {
  margin-bottom: 20px; /* Add spacing between elements */
}

.img-team {
  width: 100%;
  height: auto;
}

.team-text h2 {
  font-size: 24px;
  margin: 10px 0; /* Add some spacing above and below */
}

.team-text p {
  font-size: 18px;
}


  /* PROFILE */

  .profil-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 60px; /* Ajout de marge en bas pour l'espace entre le container et l'hr */
}

.img-profil {
    max-width: 256px;
    height: auto;
    top: 60px;
    position: relative;
    border: 1px solid black;
}

.file-input {
    display: none;
}

.display-none {
    display: none !important;
}

.hr-profile {
  margin-top: 60px; /* Ajustez cette valeur si nécessaire pour positionner l'hr */
}

.title-profil{
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 120px;
  text-align: center;
}

.review-profil{
  font-size: 1em;
  text-align: center;
}

.user-parameters {
  border: 2px solid #ccc;
  padding: 20px;
  margin: 20px auto;
  width: 60%;
  position: relative;
  text-align: left;
  box-sizing: border-box;
}

.user-parameters p {
  margin: 10px 0;
}

.user-parameters .btn-edit-profile {
  position: absolute;
  bottom: -20px; /* Ajustez cette valeur selon votre besoin */
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  background-color: darkgreen;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
}

.user-parameters .btn-edit-profile:hover {
  background-color: green;
}

.favorites-title {
  margin-top: 60px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.favorites-container {
  margin: 20px auto;
  width: 80%;
  box-sizing: border-box;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Espacement entre les éléments */
  justify-content: center;
}

.favorites-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.favorite-item {
  background-color: #f9f9f9; /* Couleur de fond pour les favoris */
  padding: 15px;
  border: 1px solid #ddd;
  width: 280px;
  min-width: 280px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 200px; /* Vous pouvez ajuster la largeur selon vos besoins */
}

.btn-list-btn,
.btn-modification-image {
    background-color: darkgreen;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-size: 1em;
    box-sizing: border-box; /* Assurez-vous que padding et border sont inclus dans la largeur et la hauteur */
}

.btn-modification-image {
    position: absolute;
    bottom: -80px; /* Ajustez cette valeur si nécessaire */
    z-index: 10;
}

.lists-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Ajoutez un espacement entre les boutons si nécessaire */
}

.btn-container {
  width: 100%; /* Ajustez cette valeur pour correspondre à la largeur de .img-profil si nécessaire */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto; /* Centre le conteneur dans son parent */
}

/* Adding Lieu */
.form-add-location {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre les éléments à l'intérieur du formulaire */
  justify-content: center; /* Centre les éléments verticalement */
}

/* Alignement des form-group */
.form-add-location .form-group {
  display: flex;
  align-items: center;
  justify-content: center; /* Centre les éléments horizontalement */
  margin-bottom: 5px;
  width: 100%; /* Assure que chaque groupe prend toute la largeur disponible */
  max-width: 500px; /* Ajustez cette valeur pour limiter la largeur */
}

/* Alignement spécifique pour le groupe de checkbox */
.form-add-location .checkbox-group {
  justify-content: flex-start; /* Aligne les éléments au début de la ligne */
  
}

.form-add-location .checkbox-group label {
  margin-right: 10px; /* Ajoute un espace entre le label et la checkbox */
}

.form-group .modification-btn{
  margin: 5px 10px !important;
  width: 200px;
}

/* Custom checkbox styling */
.form-group input[type="checkbox"] {
  accent-color: green;
}

.form-add-location label {
  width: 100px; /* Ajustez cette valeur selon vos besoins */
  margin-right: 10px; /* Espace entre le label et l'input */
}

.form-add-location input,
.form-add-location select {
  width: 100%; /* Permet à l'input de prendre toute la largeur disponible */
  max-width: 300px; /* Limite la largeur maximale à 300px ou toute autre valeur de votre choix */
  padding: 5px; /* Ajustez les marges intérieures selon vos besoins */
  flex: 2;
}

.reduce-width{
  max-width: 235px !important;
  flex: 1.6!important;
}

.form-add-location input[type="file"] {
  flex: none; /* Empêche l'input file de s'étendre */
}

.form-add-location input[type="submit"] {
  width: auto;
  margin-top: 20px; /* Ajoutez un espace au-dessus du bouton */
}

.add-location-btn{
  padding: 10px 60px !important;
}

.schedule {
  display: flex;
  align-items: center;
}

.time-range {
  display: flex;
  align-items: center;
}

.time-range label {
  display: block; /* Le label prend toute la largeur disponible */
  max-width: 100px;
}

.time-range p {
  margin: 0 0.5em; /* Espacement autour du séparateur */
}

.time-range input[type="time"] {
  margin: 0; /* Suppression des marges pour ajuster le label */
  width: 100%; /* Prendre toute la largeur disponible du label */
  border-bottom: none;
  max-width: 100px;
}

.checkbox-closed{
  height: 20px!important;
  width: 20px;
  max-width: 30px!important;
}

.label-schedule{
  font-size: 0.8em !important;
  width: 80px !important;
}



.offset-top {
  margin-top: 70px; /* Ajustez la valeur selon la hauteur de votre header */
}

.centered-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px); /* La hauteur de la fenêtre moins la hauteur du header */
  text-align: center;
}

textarea.input-add-location {
  width: 300px;  /* Définir la largeur souhaitée */
  height: 150px; /* Définir la hauteur souhaitée */
  resize: none;  /* Empêcher le redimensionnement */
}

textarea.input-add-location:focus {
  outline: none;  /* Supprimer la bordure de l'outline par défaut */
  border: 1px solid darkgreen;  /* Ajouter une bordure */
  border-radius: 0;
}

.invisible-input {
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.img-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.img-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.img-list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin-right: 5px;
  margin-bottom: 5px;
  text-decoration: none;
}

.img-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 50%;
  padding: 2px 5px;
  cursor: pointer;
  display: none;
}

.img-list li:hover .close-btn {
  display: block;
}

.add-image-btn button {
  width: 75px;
  height: 75px;
  background-color: #f0f0f0;
  border: 2px dashed darkgreen;
  font-size: 24px;
  font-weight: bold;
  color: darkgreen;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.add-image-btn button:hover {
  background-color: #e0e0e0;
}

/* INSCRIPTION */

.center-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f0f0f0;
}

.form-container {
  width: 600px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.form-container h1{
  font-size: 56px;
}

.form-group {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.form-group label {
  flex: 1;
  margin-right: 10px;
  font-size: 18px;
}

.form-group input {
  flex: 2;
  font-size: 18px;
  height: 30px;
  margin: 5px 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid darkgreen;
}

.form-container h1 {
  text-align: center;
}

.form-container .inline-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-container .inline-group .form-group {
  flex: 1;
}

.form-container input[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-container input[type="submit"]:hover {
  background-color: #45a049;
}

.google-btn {
  display: block; /* Pour centrer le bouton */
  margin: 0 auto; /* Pour centrer le bouton horizontalement */
  text-align: center; /* Pour centrer le texte à l'intérieur du bouton */
  justify-content: center;
}

.abcRioButton{
  width: 150px !important;
  display: block; /* Pour centrer le bouton */
  margin: 0 auto; /* Pour centrer le bouton horizontalement */
  text-align: center; /* Pour centrer le texte à l'intérieur du bouton */
  justify-content: center;
}

/*PASSWORD MISSING*/

.form-password-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full viewport height */
}

.center-password-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: 2px solid #ccc; /* Border color */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Optional, for shadow effect */
  background-color: #fff; /* Background color */
}

.center-password-form input,
.center-password-form button {
  margin: 10px 0;
  padding: 10px;
  width: 100%;
  max-width: 300px; /* Optional, for consistent input size */
}

.center-password-form button {
  background-color: #28a745; /* Button color */
  color: white; /* Button text color */
  border: none; /* Remove default border */
  cursor: pointer;
}

.center-password-form button:hover {
  background-color: #218838; /* Button color on hover */
}

/* MODIFICATION LOCATION */

.form-choose-location{
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre les éléments à l'intérieur du formulaire */
  justify-content: center; /* Centre les éléments verticalement */
}

.form-choose-location .form-group {
  display: flex;
  align-items: center; /* Aligne les éléments au centre verticalement */
  justify-content: center; /* Centre les éléments horizontalement */
  width: 100%; /* Assure que le groupe prend toute la largeur disponible */
  max-width: 500px; /* Ajustez cette valeur pour limiter la largeur */
}

.form-choose-location label {
  margin-right: 10px; /* Espace entre le label et l'input */
  text-align: right; /* Alignement du texte à droite */
}

.form-choose-location select {
  width: 100%; /* Permet à l'input de prendre toute la largeur disponible */
  max-width: 300px; /* Limite la largeur maximale à 300px ou toute autre valeur de votre choix */
  padding: 5px; /* Ajustez les marges intérieures selon vos besoins */
}

.uneditable-field{
  background-color: rgb(236, 236, 236) !important;
  cursor: default;
}

.add-tag-button{
  background-color: darkgreen;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 5px;
  cursor: pointer;
}

.form-modification-location {
  top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Centre les éléments à l'intérieur du formulaire */
  justify-content: center; /* Centre les éléments verticalement */
}

/* Alignement des form-group */
.form-modification-location .form-group {
  display: flex;
  align-items: center;
  justify-content: center; /* Centre les éléments horizontalement */
  margin-bottom: 10px;
  width: 100%; /* Assure que chaque groupe prend toute la largeur disponible */
  max-width: 500px; /* Ajustez cette valeur pour limiter la largeur */
}

.form-modification-location label {
  width: 150px; /* Ajustez cette valeur selon vos besoins */
  margin-right: 10px; /* Espace entre le label et l'input */
  text-align: right; /* Alignement du texte à droite pour aligner avec les inputs */
}

.form-modification-location input,
.form-modification-location select {
  width: 100%; /* Permet à l'input de prendre toute la largeur disponible */
  max-width: 300px; /* Limite la largeur maximale à 300px ou toute autre valeur de votre choix */
  padding: 5px; /* Ajustez les marges intérieures selon vos besoins */
}

.form-modification-location input[type="file"] {
  flex: none; /* Empêche l'input file de s'étendre */
}

.form-modification-location input[type="submit"] {
  margin-top: 20px; /* Ajoutez un espace au-dessus du bouton */
  margin: 20px 50px;
}

.tag-list {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* Permet le wrapping des tag-items */
}

.tag-item {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px; /* Augmentez le padding pour plus d'espace */
  border-radius: 15px;
  background-color: darkgreen;
  color: white;
  font-size: 14px;
  position: relative;
  padding-right: 35px; /* Espace pour le bouton "X" */
}

.tag-item.hovered {
  background-color: forestgreen; /* Changez la couleur de fond au survol */
}

.tag-item-show{
  display: inline-block;
  margin: 5px;
  padding: 5px 10px; /* Augmentez le padding pour plus d'espace */
  border-radius: 15px;
  background-color: darkgreen;
  color: white;
  font-size: 14px;
  position: relative;
}

.tag-item-show:first-of-type {
  margin-left: 5px;
}

.tag-item-show:nth-of-type(odd) {
  background-color: darkgreen; /* Couleur pour les éléments impairs */
}

.tag-item-show:nth-of-type(even) {
  background-color: forestgreen; /* Couleur pour les éléments pairs */
}

.remove-tag-button {
  margin-left: 10px; /* Espace entre le texte et le bouton */
  padding: 0 8px; /* Ajoutez un padding pour plus d'espace */
  cursor: pointer;
  color: white;
  background-color: transparent;
  border: none;
  font-weight: bold;
  position: absolute;
  top: 50%; /* Centre verticalement le bouton */
  right: 5px; /* Ajustez l'espace à droite */
  transform: translateY(-50%); /* Ajustement pour centrer */
  font-size: 14px;
}

.hidden {
  display: none;
}

