/* Saflio POS — Customers Module */

.customers-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.customers-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.customers-header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customers-header-left h3 {
  font-size: 1.2em;
}

.customers-search {
  display: flex;
  gap: 6px;
  align-items: center;
}

.customers-search input {
  width: 240px;
  padding: 8px 12px;
  background: var(--surface-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  color: var(--text-primary);
}

.customers-table-wrap {
  overflow-x: auto;
}
