.search input {
  min-width: 0;
  flex: 1;
  padding: 14px;
  border: 1px solid #c9d5ce;
  border-radius: 12px;
  font-size: 16px;
}

.search button {
  min-width: 94px;
}

.scan-help {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.scanner-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 16px;
  background: #071f17db;
}

.scanner-card {
  width: min(520px, 100%);
  padding: 15px;
  border-radius: 18px;
  background: #fff;
}

.scanner-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.scanner-title button {
  padding: 9px 13px;
  border: 0;
  border-radius: 9px;
  background: #e6ece8;
  color: var(--green);
  font-weight: 800;
}

.scanner-card p {
  margin: 10px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

#reader {
  min-height: 260px;
  overflow: hidden;
  border-radius: 12px;
  background: #101814;
}

@media (max-width: 560px) {
  .search {
    flex-direction: column;
  }

  .search button {
    min-height: 48px;
  }
}
