html {
  height: 100%;
  width: 100%;
  background-color: whitesmoke;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.row {
  flex-direction: row;
}
.column {
  flex-direction: column;
}

.camera-button {
  margin: 1vh;
  padding: 1vh;
  font-size: 3vh;
  color: whitesmoke;
  background-color: rgb(70, 70, 255);
  border: none;
  border-radius: 1vh;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.camera-button:hover {
  background-color: rgb(32, 32, 254);
  color: whitesmoke;
  box-shadow: 5px 5px rgb(30, 30, 30);
}

.camera-button:active {
  opacity: 0%;
}

p {
  font-family: Helvetica, sans-serif;
  text-align: center;
  font-size: 1vh;
  margin: 1vh;
}

.title-image {
  margin-bottom: 1vh;
  width: auto;
  height: 7vh;
}

.credits{
  font-size: 3vh;
  margin-top: 4vh;
}

/* Dropdown */

.dropbtn:hover, .dropbtn:focus {
  background-color: #2980B9;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}


/* FROM HEAD OF INDEX.HTML */
.scan-results {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    background-color: darkgray;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.result-content {
    text-align: left;
    margin: 15px 0;
}

.status-message {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.scan-again-button {
    margin: 1vh;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 15px;
}

.scan-again-button:hover {
    background-color: #45a049;
}

/* Loader styles */
.loader {
    border: 4px solid darkgray;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}









.scan-results {
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  background-color: whitesmoke;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.result-content {
  text-align: left;
  margin: 15px 0;
}

.status-message {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0;
}

.scan-again-button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 15px;
}

.scan-again-button:hover {
  background-color: #45a049;
}

.general-info{
  font-size: 10vw;
}

.additional-info{
  display: none;
}

/*
.link-box{
  width: 15vw;
  height: auto;
  padding: 0.5vh;
  border: 0.3vh solid black
}
*.