#map {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80vh;
  z-index: 0;
  align-items: center;
}

.card {
  position: relative;
  z-index: 2;
}

body {
  font-family: sans-serif;
  text-align: center;
  padding: 20px;
  background: #f0f2f5;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

#status {
  font-weight: bold;
  color: #666;
}

#distance {
  font-size: 48px;
  color: #333;
  display: block;
  margin: 20px 0;
}

button {
  background-color: #ccc;
  color: white;
  border: none;
  padding: 15px 30px;
  margin: 1rem;
  font-size: 20px;
  border-radius: 50px;
  cursor: not-allowed;
  width: 100%;
  transition: 0.3s;
}

button.active {
  background-color: #007bff;
  cursor: pointer;
  transform: scale(1.05);
}

/* God Mode Button Style */
#god-mode-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #ffc107;
  /* Yellow warning color */
  color: white;
  border-radius: 50%;
  font-size: 20px;
  padding: 0;
  cursor: pointer;
  opacity: 0.3;
  /* Mostly invisible */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#god-mode-btn:hover {
  opacity: 1;
  /* Fully visible on hover */
}

#category-buttons {
  display: flex;
  align-items: center;
}

#category-buttons button {
  width: 15%;
}
