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

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

.areas-panel{
  position:absolute;
  top:12px;
  right:12px;
  z-index:9999;
  width:320px;
  max-height: calc(100vh - 24px);
  overflow:auto;
  background:#111;
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:12px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.areas-panel h3{
  margin:0 0 10px;
  font-size:14px;
  opacity:.9;
}

.area-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:12px;
  padding:10px;
  margin-bottom:10px;
}

.row{
  display:flex;
  gap:8px;
  align-items:center;
}

.row + .row{
  margin-top:8px;
}

.area-name{
  flex:1;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  border-radius:10px;
  padding:8px 10px;
  outline:none;
}

.pill{
  padding:6px 10px;
  border-radius:10px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  font-size:12px;
}

.btn{
  cursor:pointer;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  border-radius:10px;
  padding:8px 10px;
  font-size:12px;
}

.btn:hover{
  background:rgba(255,255,255,.14);
}

.btn-danger{
  background:rgba(255,60,60,.18);
  border-color:rgba(255,60,60,.35);
}

.muted{
  opacity:.7;
  font-size:12px;
}

.panel-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
}

.panel-header h3{
  margin:0;
}

.totals-card{
  margin-top:8px;
  padding:10px;
  border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
}

.totals-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  opacity:.9;
  margin-bottom:8px;
}

.totals-grid{
  display:grid;
  gap:6px;
}

.total-row{
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:12px;
  padding:6px 8px;
  border-radius:10px;
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.08);
}

.total-row b{
  font-weight:600;
  opacity:.95;
}

.total-num{
  font-variant-numeric: tabular-nums;
  opacity:.95;
}
