#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Make sure it's above all other content */
}

/* Loading spinner styles */
.spinner {
  border: 8px solid #f3f3f3; /* Light gray background */
  border-top: 8px solid #3498db; /* Blue color for the spinner */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;}
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}/* Add your styles here */

/* Pre-loader styles */
#content {
display: none;
}

html, body {
  margin: 0;
  padding: 0;
}

#map {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
}
  
  #selectContainer {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%); /* This centers the container horizontally */
    z-index: 1000;
    width: 100%;
    padding: 11px 0;
    text-align: center; /* Ensures any content inside #selectContainer is centered */
  }
  
  #countrySelect {
    width: 200px;
    display: inline-block; /* Make sure the select stays inline with the container */
  }
  