html, body {
  margin: 0;
  padding: 0;
}

#lvo-loading {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
}

.lvo-loading__card {
  width: min(360px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  background: #FFFFFF;
  color: #323232;
  font-family: "Source Sans Pro", "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-align: center;
}

.lvo-loading__spinner {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  margin: 6px auto 12px auto;
  border: 3px solid rgba(19, 122, 50, 0.18);
  border-top-color: rgba(19, 122, 50, 0.92);
  animation: lvo-spin 1s linear infinite;
}

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

.lvo-loading__title {
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 4px;
}

.lvo-loading__subtitle {
  font-size: 13px;
  opacity: 0.82;
}

.lvo-loading__button {
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: #FFFFFF;
  color: #323232;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.lvo-loading--hidden {
  display: none !important;
}

.leaflet-container {
  width: 100vw;
  height: 100vh;
}
