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

#main-container {
  display: flex;
  height: 100%;
  overflow: hidden;
}

#filtersPanel {
  width: 220px;
  background: #f8f9fa;
  padding: 1rem;
  overflow-y: auto;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 0.95rem;
  color: #333;
  border-right: 1px solid #ddd;
}

#map {
  flex: 1;
  height: 100%;
  position: relative;
}
#scorePanel {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.score-card {
  padding: 1rem;
  background: white;
  border-radius: 8px;
  max-width: 340x;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  font-family: inherit;
  font-size: 14px;
  color: inherit;
}

.score-value {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.score-label {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 1rem;
}

.indicator {
  margin-bottom: 0.7rem;
}

.indicator-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.indicator-bar-bg {
  background: #e0e0e0;
  height: 6px;
  border-radius: 3px;
}

.indicator-bar-fill {
  background: #007bff;
  height: 6px;
  border-radius: 3px;
}

.score-label.good {
  color: #28a745; /* verde */
}

.score-label.average {
  color: #ffc107; /* naranja */
}

.score-label.poor {
  color: #dc3545; /* rojo */
}

body, html, #main-container, #map, #scorePanel, .score-card, .score-card * {
  font-family: 'Segoe UI', Tahoma, sans-serif !important;
}
.indicator-title span:last-child {
  font-size: 0.85rem;
}
