/* 🔹 Simple popup styling */
#locationModal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.648);
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#locationModal.active {
  visibility: visible;
  opacity: 1;
}
#locationBox {
  background: white;
  padding: 20px;
  max-width: 400px;
  border-radius: 12px;
  color: black;
  text-align: center;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
#locationBox button {
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
#allowBtn {
  background: #4caf50;
  color: white;
}
#denyBtn {
  background: #f44336;
  color: white;
}
