html, body {
  margin: 0;
  padding: 0;
}

#map {
  position: relative;
  height: calc(100vh - 56px); 
  width: 100%;
  z-index: 1;
}

#selectContainer {
  position: fixed; 
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 1rem;
}

.custom-header {
  background-color: #198754; /* Bootstrap 'bg-success' */
  color: white;
}

.modal-content {
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

#countrySelect {
    width: 200px;
}

@media (max-width: 767px) {
  #selectContainer select {
    width: 100%;
    pointer-events: auto;
  }
}

.modal-body {
  max-height: 400px;
  overflow-y: auto;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.hover-shadow:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
