body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

#map {
    width: 100vw;
    height: 100vh;
}

.custom-tooltip {
    --bs-tooltip-bg: whitesmoke;
    --bs-tooltip-color: black;
}

.bx-navigation,
.bx-share,
.bx-plus,
.bx-minus,
.bx-layer {
    font-size: 20px;
    color: rgba(101, 104, 108, 1);
}

.bxl-whatsapp {
    font-size: 30px;
    color: rgba(101, 104, 108, 1);
}

.share-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dropdown-item .form-check-input {
  width: 14px;
  height: 14px;
}

.spinner-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.spinner-overlay.active {
  visibility: visible;
  opacity: 1;
}

.spinner {
  border: 6px solid #ccc;
  border-top-color: #2981ca;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  animation: spin 1s linear infinite;
}

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