body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 10px;
    background-color: #f0f8ff;
}

h1 {
    color: #008b8b;
}

/* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f0f8ff;
  padding: 5px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

#inputText {
    width: 300px;
    padding: 10px;
    margin-bottom: 10px;
    border: 2px solid #008b8b;
    border-radius: 5px;
}

button {
    background-color: #008b8b;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 5px;
}

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

#barcode {
    margin-top: 20px;
}

div {
    margin-bottom: 15px;
}

input[type='radio'] {
    margin-right: 5px;
}

label {
    margin-right: 15px;
    color: #006666;
}
