/* Map container */
#map-root { display: none; }

#map {
  height: 75vh;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@media (max-width: 600px) {
  #map { height: 300px; }
}

/* Buttons */
.custom-button {
  background-color: #C0392B;
  color: #fff;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}
.custom-button:hover { background-color: #ff4b4b; }
.custom-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,111,97,0.5);
}

/* Calendar icon color */
.calendar-icon { color: #C0392B; }

/* Legend marker for HMS fire points */
.icon-hms-fire {
  width: 10px;
  height: 10px;
  background-color: #DD571C;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-left: 4px;
  border-radius: 50%;
  border: 2px solid orange;
}

/* Table header */
.table thead th {
  background-color: #C0392B;
  color: #fff;
}

/* Hero banner */
.hero-banner {
  background: linear-gradient(135deg, #ff9a9e 0%, #C0392B 100%);
  color: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Leaflet legend box */
.info.legend {
  background: #fff;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


.banner-title {
  font-size: 1.35rem;
  font-weight: 550;
  opacity: 0.9;
  margin-bottom: 0.25rem;
  text-align: center;
  text-transform: uppercase;
}

.hero-count {
  display:inline-block;
  margin:0 .25rem;
  padding:.15rem .6rem;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.28);
  font-weight:800;
  font-variant-numeric: tabular-nums;
}

