/* =================================================
   CLIENTES
================================================= */
.card__filters {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
}

.card__filters input {
  width: 100%;
  max-width: 320px;
}

/* Tabla responsive */
.table-wrap {
  overflow-x: auto;
}

/* Acciones */
.actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.actions .btn {
  padding: 6px 10px;
  font-size: 12px;
}

/* Header */
.card--table {
  padding: 0;
}

.card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--border-soft);
}

/* Responsive */
@media (max-width: 640px) {
  .card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .actions {
    width: 100%;
    justify-content: space-between;
  }
}
