/* personero.css */

/* Quitar flechas en input number - Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.titulo-principal {
  margin-top: 60px;
  text-align: center;
  font-size: 40px;
  font-family: Arial, sans-serif;
}

.distritos-container {
  display: flex;
  gap: 20px;
  max-width: 1200px;
  margin: 40px auto 40px;
  font-family: Arial, sans-serif;
}

.distrito {
  flex: 1 1 48%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

.titulo-distrito {
  text-align: center;
  margin-bottom: 25px;
  font-size: 25px;
}

.candidato-block {
  display: flex;
  align-items: center;
  border-radius: 4px;
  padding: 10px;
  margin-bottom: 8px;
}

.candidato-block:nth-child(odd) {
  background: #c9e2ff;
}

.candidato-block:nth-child(even) {
  background: #d6ecff;
}

.candidato-img-partido {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}

.candidato-info {
  flex-grow: 1;
  font-weight: 600;
}

.candidato-img-persona {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #aaa;
  margin-left: 15px;
}

.candidato-input {
  width: 60px;
  height: 48px;
  margin-left: 10px;
  text-align: center;
  font-size: 18px;
  border: 2px solid #666;
  border-radius: 10px;
  outline: none;
  background: white;
}

.votosEspeciales {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  padding: 10px;
  margin-top: 20px;
  border-radius: 8px;
  border: 2px solid #666;
  font-weight: 600;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.votosEspeciales input {
  width: 80px;
  height: 48px;
  text-align: center;
  font-size: 18px;
  border: 2px solid #666;
  border-radius: 10px;
  outline: none;
  background: white;
  margin-left: auto;
}


.votos-impugnados {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  padding: 10px;
  margin-top: 20px;
  border-radius: 8px;
  border: 2px solid #666;
  font-weight: 600;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.votos-impugnados input {
  width: 80px;
  height: 48px;
  text-align: center;
  font-size: 18px;
  border: 2px solid #666;
  border-radius: 10px;
  outline: none;
  background: white;
  margin-left: auto;
}
