.pos-customer-add {
  width: 100%;
  min-height: 40px;
  margin: -3px 0 9px;
  border: 1px dashed #cdb77e;
  border-radius: 9px;
  background: #fffaf0;
  color: #77591f;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font: 700 10px 'DM Sans', sans-serif;
  cursor: pointer;
  transition: .18s;
}

.pos-customer-add:hover {
  border-style: solid;
  border-color: #b88932;
  background: #faf0d9;
  transform: translateY(-1px);
}

.pos-customer-add span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #b88932;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 650px) {
  .pos-customer-add { min-height: 44px; font-size: 11px; }
}
