/* assets/css/style.css */

html, body { height: 100%; }

/* Map */
#map {
  width: 100%;
  height: 400px;
}
@media (min-width: 768px) {
  #map { height: 520px; }
}
@media (min-width: 1200px) {
  #map { height: 580px; }
}

/* GEE full-screen */
#geeContainer .card-body {
  height: calc(100vh - 180px) !important;
}
@media (max-width: 767px) {
  #geeContainer .card-body {
    height: calc(100vh - 220px) !important;
  }
}

/* Charts */
canvas {
  max-width: 100% !important;
  height: auto !important;
}

/* Floating buttons */
#floatingButtons { z-index: 9999; }
.fade-btn {
  width: 52px;
  height: 52px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, opacity 0.18s ease;
  opacity: 0.92;
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}
.fade-btn:hover {
  transform: scale(1.06);
  opacity: 1;
}

/* Live badge */
#liveBadge {
  z-index: 9999;
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 600;
}

/* Cards */
.card { margin-bottom: 1rem; }
@media (min-width: 992px) {
  .card { margin-bottom: 0; }
}