.map-background {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  margin: auto;
  width: 100vw;
  height: 100vh;
  border: none;
  z-index: -1;
  /* filter: blur(3px); */
}

.overlay,
.container {
  position: relative;
  z-index: -1;
}

.map-background {
  width: 100%;
  height: 100%;
  border: none;
  z-index: -1;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Dark overlay with transparency */
  z-index: -1; /* Ensure it appears above the map background */
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.google-button-overlay {
  /* background-color: #e8f0fe; */
  /* border: none;
  padding: 12px 24px; */
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2px;
  color: #3c4043;
  border-radius: 50px; /* Fully rounded edges */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 3;
  position: relative;
}

.google-button-overlay img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.google-button-overlay:hover {
  background-color: #d2e3fc;
  transform: scale(1.03);
  text-decoration: none;
}

.google-button-overlay label {
  cursor: pointer;
  font-weight: 500;
  color: #333;
  font-size: 14px;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

@media (max-width: 480px) {
  .google-button-overlay {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.container {
  width: 350px;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  position: relative;
  z-index: 4; /* Keep above overlay */
}
