body {
  font-size: 14px;
  font-family: Arial;
}

.inputs-container {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
  max-width: 700px;
}

.select-container {
  margin-bottom: 20px;
}

.label-container {
  margin-bottom: 10px;
}

#scan-code,
#search-btn {
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  color: black;
  cursor: pointer;
}

#scan-code:hover,
#search-btn:hover {
  opacity: 0.7;
}

#scan-code:active,
#search-btn:active {
  opacity: 0.5;
}

#scan-code {
  background-color: #eeff00;
}

#search-btn {
  background-color: #00c540;
}

.caution-img {
  width: 100px;
  height: 100px;
}

.ok-img {
  transform: scale(1.5);
  width: 50px;
}

.error-img {
  width: 80px;
}

.message-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.p-message {
  font-size: 14px;
  text-align: center;
  background-color: black;
  padding: 10px;
  border-radius: 10px;
}

.hidden {
  display: none;
}

@media (width > 768px) {
  body {
    font-size: 16px;
  }
}
