/* ============================================================
   Estilos propios — Sistema Legislativo v2
   Concejo Deliberante de Ushuaia
   ============================================================ */

/* ---- Variables ---- */
:root {
  --sl-primary: #0d6efd;
  --sl-sidebar-width: 0px;
}

/* ---- Body y layout ---- */
body {
  font-size: 0.92rem;
  background-color: #f5f7fa;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ---- Navbar ---- */
.navbar-brand {
  font-size: 1rem;
}

/* ---- Cards ---- */
.card {
  border-radius: 0.5rem;
  border-color: #e3e8ef;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.card-header {
  background-color: #f8f9fb;
  border-bottom-color: #e3e8ef;
  font-weight: 500;
  font-size: 0.9rem;
}

/* ---- Tablas ---- */
.table th {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
}

.table td {
  vertical-align: middle;
}

/* ---- Formularios ---- */
.form-label {
  font-weight: 500;
  font-size: 0.88rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sl-primary);
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.15);
}

/* ---- Badges ---- */
.badge {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- Página de login ---- */
body.bg-light .card {
  border-radius: 0.75rem;
}

/* ---- Alertas ---- */
.alert {
  font-size: 0.9rem;
  border-radius: 0.5rem;
}

/* ---- Paginación ---- */
.pagination {
  margin-bottom: 0.5rem;
}

/* ---- Texto truncado en tablas ---- */
.text-truncate {
  max-width: 250px;
}

/* ---- Filas clickeables ---- */
tr[onclick] {
  cursor: pointer;
  transition: background-color 0.1s;
}

/* ---- Footer ---- */
.footer {
  font-size: 0.82rem;
}

/* ---- Responsive ajustes ---- */
@media (max-width: 768px) {
  main {
    padding: 1rem !important;
  }

  .table-responsive {
    font-size: 0.85rem;
  }
}
