.map-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
  }
  
  .map {
    width: 100%;
    height: 100%; /* Fill the container */
  }


  .loading-overlay, .error-overlay {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .error-overlay {
    background: rgba(255, 0, 0, 0.2);
    color: #d32f2f;
  }