body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 10px;
    max-width: 800px;
}
h2 {
    font-size: 1.1em;
}
select { padding: 5px; margin: 10px 0; width: 100%; max-width: 400px; }
.loading { color: #666; font-style: italic; }
.error { color: #d32f2f; font-weight: bold; }
.info { color: #1976d2; }

.info { 
    color: #1976d2; 
    font-size: 0.9em;
    margin-top: 10px;
    font-style: italic;
}

.ultima-actualizacion {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.8em;
    color: #666;
}

#detalle-localidad { 
    padding: 10px; 
    border: 1px solid #fff; 
    border-radius: 5px; 
    background-color: #f9f9f9; 
}
.detail-row { margin-bottom: 8px; }
.detail-label { font-weight: bold; display: inline-block; width: 120px; }

.datos-generales {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  background-color: #f0f3f5;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #d3d3d3;
}

.dato {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.dato .label {
  color: #555;
  font-weight: 500;
}

.dato .valor {
  font-size: 16px;
  font-weight: bold;
  color: #222;
}

.barra-porcentaje {
  margin-top: 10px;
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.barra-porcentaje .relleno {
  height: 100%;
  background-color: #2e86de; /* Color azul */
  transition: width 0.6s ease;
}

.resultados-container {
  max-width: 800px;
  margin: auto;
  background-color: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resultados-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.candidato {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.info-candidato {
  display: flex;
  align-items: center;
  gap: 10px;
}

.img-candidato {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #333;
}

.partido {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

.img-partido {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.votos {
  text-align: right;
  width: 30%;
}

.porcentaje {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #2e86de;
}

.cantidad {
  font-size: 14px;
  color: #333;
}

@media (max-width: 600px) {
  .candidato {
    flex-direction: column;
    align-items: flex-start;
  }

  .votos {
    text-align: left;
    margin-top: 10px;
  }
}