body {
  font-family: Rajdhani, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #233040;
}

img{
  width: 90%;
}

h1{
  font-size: 1.5em;
}

.centered-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto; /* Centers the form horizontally */
  width: 25%; /* Adjusts width to content */
  padding: 1rem; /* Adds padding for aesthetics */
  border: 1px solid #ddd; /* Optional: adds a border */
  border-radius: 4px; /* Optional: adds rounded corners */
  background-color: #ffffff; /* Optional: adds a background color */
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 1030px) {
  .centered-form {
    width: 80%;
  }
}

.form-group {
  margin-bottom: 1rem;
}

.search-dropdown {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.search-dropdown::-webkit-scrollbar {
  width: 5px;
}

.search-dropdown::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 5px;
}

input[type="number"] {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 5rem;
  text-align: center;
}

button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  background-color: #333;
  color: white;
  cursor: pointer;
}

#submitButton:hover{
  background-color: #555;
}

.section {
  background-color: #ffffff;
  margin-bottom: 20px;
}

#my-qr-reader {
  padding: 20px !important;
  border: 1.5px solid #b2b2b2 !important;
  border-radius: 8px;
}

#my-qr-reader img[alt="Info icon"] {
  display: none;
}

#my-qr-reader img[alt="Camera based scan"] {
  width: 100px !important;
  height: 100px !important;
}