/* ============================================================
   EOLO Votaciones — style.css
   ============================================================ */

/* ── Base ──────────────────────────────────────────────────── */
body            { padding-top: 60px; }
.navbar-brand   { font-weight: 600; }
.table td,
.table th       { vertical-align: middle; }
.form-select    { min-width: 220px; }

/* ── Toast ─────────────────────────────────────────────────── */
.eolo-toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: #212529;
  color: #fff;
  padding: .6rem 1.1rem;
  border-radius: 8px;
  font-size: .875rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.eolo-toast--show {
  opacity: 1;
  transform: translateY(0);
}

/* ── Toolbar selector de gráfico ───────────────────────────── */
#eoloToolbar .btn {
  font-size: .78rem;
  padding: .25rem .65rem;
}

/* ── Barras horizontales ───────────────────────────────────── */
.eolo-bars {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.eolo-bars--small .eolo-label,
.eolo-bars--small .eolo-count { font-size: .8rem; }

.eolo-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  gap: .6rem;
}

.eolo-label {
  font-size: .875rem;
  line-height: 1.25;
  color: #212529;
}

.eolo-bar-wrap {
  background: #e9ecef;
  border-radius: 6px;
  height: 18px;
  overflow: hidden;
}

.eolo-bar {
  height: 100%;
  border-radius: 6px;
  min-width: 2px;
  transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

.eolo-count {
  font-size: .82rem;
  font-variant-numeric: tabular-nums;
  color: #495057;
  min-width: 95px;
  text-align: right;
  white-space: nowrap;
}

/* ── Donut: contenedor flex ────────────────────────────────── */
.eolo-donut-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── Donut: leyenda ────────────────────────────────────────── */
.eolo-legend {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
  min-width: 175px;
}
.eolo-legend-item {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  font-size: .82rem;
  line-height: 1.3;
}
.eolo-legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}
.eolo-legend-text {
  flex: 1;
  color: #212529;
}
.eolo-legend-val {
  font-variant-numeric: tabular-nums;
  color: #6c757d;
  white-space: nowrap;
}

/* ── Escalera por sección ──────────────────────────────────── */
#stairResults h6 {
  font-size: .875rem;
  color: #343a40;
}

/* ── Tabla de resultados ───────────────────────────────────── */
#resultsContainer .table,
#stairResults .table {
  font-size: .82rem;
}

/* ── Fila "No han votado" ───────────────────────────────────── */
.eolo-row--abs .eolo-label {
  color: #6c757d;
  font-style: italic;
}
.eolo-row--abs .eolo-count {
  color: #adb5bd;
}