#map {
  height: 100%;
}

.leaflet-popup-content-wrapper {
  background: #153024;
  color: #f9fafb;
  border-radius: 0.5rem;
}

.leaflet-popup-tip {
  background: #153024;
}

select,
input[type="number"],
input[type="text"] {
  background-color: #082317;
  border: 1px solid #178062;
  color: #f9fafb;
  border-radius: 0.375rem;
  padding: 0.375rem 0.5rem;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.875rem;
  line-height: 1.25rem;
  height: 2.25rem;
  box-sizing: border-box;
}

select:focus,
input:focus {
  outline: none;
  border-color: #FBD348;
  box-shadow: 0 0 0 2px rgba(251, 211, 72, 0.3);
}

/* Loading spinner */
.spinner {
  border: 3px solid #153024;
  border-top: 3px solid #178062;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
