/* Geolocation Styles */
.geolocation-status {
  padding: 0.75rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
}

.geolocation-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.geolocation-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.geolocation-status.info {
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.geolocation-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
}

/* Make map container responsive */
#map {
  z-index: 1;
}

@media (max-width: 768px) {
  .geolocation-options {
    flex-direction: column;
  }

  .geolocation-options .btn {
    width: 100%;
  }
}

