.background-card {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card {
  margin-bottom: 10px; /* Ajoute de l'espace en dessous de chaque carte */
}

.highlight-card {
    background-color: rgba(255, 255, 0, 0.5); /* Fond jaune avec 50% de transparence */
}


.jumbotron {
  background-color: #e9ecef;
}


.google-map-placeholder {
  background-color: #f0f0f0;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 20px;
  border: 1px solid #ddd;
}


.social-icons i {
  font-size: 24px; /* Augmente la taille de l'icône */
  color: #007bff; /* Change la couleur de l'icône en bleu */
  margin-right: 10px; /* Ajoute un espace entre les icônes */
}


.btn-primary {
  margin-bottom: 0.5rem; /* Ajoute un espace en bas de chaque bouton */
}



.navbar .btn-primary {
  margin-bottom: 0;
}


.custom-jumbotron {
  padding-top: 10px;
  padding-bottom: 1px;
}


.h1listing {
  font-size: 1.5rem;
}

.navbar-nav .nav-item {
  margin-left: 10px; /* Adjust as needed for desired spacing */
}

/* Styles for the map overlay and popup */
.map-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}


.map-popup {
  background: white;
  border-radius: 10px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
}


.map-popup #close-map-btn {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 1;
}


.d-none {
  display: none;
}


@media (min-width: 768px) {
  .map-overlay {
    position: sticky !important;
    top: 10px;
    margin-bottom: 1rem;
    height: 90vh;
    overflow: hidden;
    background: #fff;
  }


  .map-popup {
    width: 100%;
    max-width: none;
  }


  .map-popup #close-map-btn {
    display: none;
  }


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