* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

#app-header {
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 16px;
  background: #6d1f1f;
  color: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  position: relative;
  z-index: 1200;
}

#app-header h1 { margin: 0; font-size: 18px; font-weight: 600; }
#app-header p { margin: 0; font-size: 12px; opacity: .85; }

#map {
  height: calc(100vh - 56px);
  width: 100%;
  background: #eaeaea;
}

/* Legende */
.legend {
  background: rgba(255, 255, 255, .92);
  padding: 8px 10px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .3);
  font-size: 12px;
  line-height: 1.5;
  color: #222;
}

.legend h4 {
  margin: 0 0 4px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #555;
}

.legend hr { border: none; border-top: 1px solid #ddd; margin: 6px 0; }
.legend .legend-note { max-width: 190px; color: #444; }

.legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  vertical-align: -1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .2);
}

.legend .dot.hoard { background: #dc0000; }
.legend .dot.coin { background: #ff8c00; }

.leaflet-control-layers { font-size: 13px; }

/* Popup */
.fund-popup .leaflet-popup-content { margin: 12px 14px; }

.fund h3 { margin: 0 0 6px; font-size: 15px; color: #6d1f1f; }

.type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  padding: 1px 8px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: #777;
}

.type-badge.hoard { background: #dc0000; }
.type-badge.coin { background: #ff8c00; }

.fund-dl {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 3px 10px;
  margin: 0;
  max-height: 320px;
  overflow: auto;
}

.fund-dl dt { font-weight: 600; color: #555; }
.fund-dl dd { margin: 0; color: #222; word-break: break-word; }
.fund-dl dd a { color: #1a5fb4; }

.fund-msg { font-size: 13px; color: #333; max-width: 240px; }
.fund-msg code { background: #f0f0f0; padding: 1px 4px; border-radius: 3px; }
