.input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 6px;
  border-radius: 6px;
  width: fit-content;
  gap: 10px;
}

.input-wrapper input {
  border: none;
  outline: none;
  font-size: 16px;
  padding: 5px;
  width: 200px;
}

.input-wrapper i {
  font-size: 20px;
  color: #555;
  cursor: pointer;
}

#scanner-container {
  display: none;
  position: relative;
  width: 320px;
  height: 320px;
  margin-top: 15px;
  border: 2px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
  z-index: 9999;
  background: #000;
}

#scanner {
  width: 100%;
  height: 100%;
}

.scanner-btn {
  position: absolute;
  top: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 10000;
}

#close-btn {
  right: 10px;
}

#flash-btn {
  left: 10px;
}
