/* ---------- General Layout ---------- */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-fluid {
  max-width: 100%;
  padding: 1rem;
}

/* ---------- Tarjetas de resumen ---------- */
.tarjeta-estatus {
    min-width: 100px;
    min-height: 100px;
    margin: 5px;
    border-radius: 10px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

.tarjeta-estatus small {
    font-size: 0.8rem;

    white-space: nowrap;
    margin-bottom: 5px;
}

.valor-estatus {
    font-size: 2rem;
    line-height: 1;
}


.card-estatus:hover {
  transform: scale(1.02);
}

.card-estatus {
  background-color: #ffffff;
  border-left-width: 6px;
  border-radius: 0.5rem;
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin-bottom: 0.8rem;
}


.card-estatus .titulo {
  font-weight: bold;
  font-size: 0.95rem;
  color: #333;
}

.card-estatus .valor {
  font-size: 1.4rem;
  font-weight: bold;
  color: #0d6efd;
}

/* ---------- Verificado (✅) ---------- */
td:nth-child(12) {
  text-align: center;
  font-size: 1.5rem;
  color: green;
}

/* ---------- Tabla Responsiva ---------- */
table.dataTable td {
  vertical-align: middle;
}

/* ---------- Modal de Actualización ---------- */
.modal .form-label {
  font-weight: 500;
}

.modal textarea {
  resize: vertical;
}

/* ---------- Teléfono más grande ---------- */
td:nth-child(3) strong {
  color: #212529;
}

/* ---------- Botón Actualizar ---------- */
button.btn-primary {
  font-size: 0.9rem;
  padding: 0.4rem 0.7rem;
}

/* ---------- DataTable ajustes móviles ---------- */
@media screen and (max-width: 768px) {
  #tabla_simpatizantes {
    font-size: 0.8rem;
  }

  .card-estatus {
    padding: 0.8rem;
  }

  .card-estatus .valor {
    font-size: 1.2rem;
  }
}


