/**
 * CSS for Know Your Area - Master/Detail Crime Heatmap
 * Designed for clean visual hierarchy and glassmorphic map markers
 * Lars Erlandsen, Know Your Area Limited
 * https://www.knowyourarea.co.uk
 */

/* --- Glassmorphic Cluster Icons --- */
.kya-crime-cluster-badge {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25), inset 0 0 0 2px rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.kya-crime-cluster-badge:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(255, 255, 255, 0.8);
  z-index: 1000 !important;
}

.kya-crime-cluster-badge div {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: -0.3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Color scaling by density */
.marker-cluster-small div { background-color: rgba(16, 185, 129, 0.9); }    /* Emerald Green */
.marker-cluster-medium div { background-color: rgba(245, 158, 11, 0.9); }   /* Amber Yellow */
.marker-cluster-large div { background-color: rgba(220, 38, 38, 0.95); }    /* Crimson Red */

/* --- Side Panel Summary Box --- */
.kya-heatmap-summary-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.kya-summary-stat {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kya-summary-stat.border-left {
  border-left: 1px solid #e2e8f0;
  padding-left: 12px;
  margin-left: 12px;
}

.stat-label {
  font-size: 11px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

.stat-value {
  font-size: 22px;
  color: #0f172a;
  font-weight: 800;
  line-height: 1.2;
}

.kya-summary-trend {
  width: 100%;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed #e2e8f0;
  text-align: right;
}

.kya-trend-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
}

.kya-trend-badge.escalating { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.kya-trend-badge.deescalating { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.kya-trend-badge.stable { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

/* --- Table Adjustments --- */
.kya-crime-summary-badge {
  float: right;
  font-size: 11px;
  font-weight: 700;
  background: #e2e8f0;
  color: #334155;
  padding: 2px 6px;
  border-radius: 4px;
}
