.sidebar .card.bslib-value-box,
.sidebar .card-body,
.sidebar .card {
  overflow: visible;
  position: relative;
}

/* Remove bottom margin from checkbox inputs inside flex rows */
.d-flex > .shiny-input-container {
  margin-bottom: 0;
}

.selectize-dropdown {
  z-index: 10000;
}

.modal {z-index: 1150;}

.navbar-brand {
  margin-right: 0px;
}

body {
  background-color: #F5F5F5;
}

#website_logo {
  height: 40px;
}

@keyframes blink {
  0%   { stroke: orange; stroke-width: 4; }
  50%  { stroke: white; stroke-width: 4; }
  100% { stroke: orange; stroke-width: 4; }
}

.blink-outline {
  animation: blink 1s infinite;
}

/* Map loading overlay */
#map-loader {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

#map-loader .map-spinner {
  width: 52px;
  height: 52px;
  border: 5px solid #ccc;
  border-top-color: #2ca25f;
  border-radius: 50%;
  animation: map-spin 0.75s linear infinite;
}

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