
:root {
  color-scheme: light only;
}

body {
  margin: 0;
  font-family: sans-serif;
  background-color: #fff;
  color: #333;
  text-align: center;
}

header {
  background-color: #f58220;
  color-scheme: light;
  padding: 1rem;
}


header img {
  max-height: 60px;
}

#scanner {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  margin: 1rem auto;
  border: 2px solid #f58220;
  overflow: hidden;
}

#scanner video,
#scanner canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.barcode-result {
  font-size: 1.2rem;
  margin: 1rem;
}

button {
  padding: 0.8rem 1.5rem;
  background-color: #f58220;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background-color: #d66f14;
}

input[type="file"] {
    display: none;
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}