body, html {
  height: 100vh;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .header {
    background-attachment: scroll;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #ffffff;
}

.header {
  background-image: url('test-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: #fff;
  text-align: left;
  position: relative;
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, .4);

  /*Parallax effect from W3Schools*/
  /* Full height */
  height: 100vh;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.header h1 {
  font-size: 4vw;
  margin-bottom: 1vh;
  margin-top: 25vh;
  margin-left: 10vw;
}

.header p {
  font-size: 1vw;
  margin-bottom: 1vh;
  margin-top: 0vh;
  margin-left: 10vw;
  max-width: 33vw;
}

.content {
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.nav {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  text-align: center;
  z-index: 99;
}

.nav a {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.nav a:hover {
  background-color: #555;
}

.section-container {
  display: flex; 
  align-items: center; 
  background-color: #f3f3f3; 
  padding: 2vw; 
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, .4); 
  margin: 2vw;
}

.section-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size:24px;
  margin-top: 5px; margin-bottom: 0px;
  text-align: center;
  font-weight: normal;
  color: #555;
  min-width: 20vw;
  /*margin-right: 2vw;*/
  text-transform: lowercase;
}

.section-text {
  color: #666; 
  font-size: 1vw;
  line-height: 1.5; 
  flex: 1; 
  padding: 1vw;
}

.fetch-container {
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  padding: 2vw;
  box-shadow: 0 1vw 2vw rgba(0, 0, 0, .4);
  margin: 2vw;
  flex-direction: column; 
}

.table-container {
  margin-top: 1rem; 
}

.fetch-container input {
  margin-bottom: 1rem; 
  display: inline-flex;
  max-width: 100vw;
  max-height: 100vh;
}

.styled-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 1em;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}

.styled-table thead tr {
  background-color: #999999;
  color: #ffffff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: .3vw .3vw;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.custom-input {
  cursor: pointer;
  padding: 10px 20px;
  font-size: 1.2rem;
  color: #000000;
  background-color: #f3f3f3;
  border: solid;
  border-radius: 0px;
  transition: background-color 0.3s ease;
  border-color: grey;
}

.custom-input:hover {
  background-color: #097be4;
}

.email {
  color: inherit;
}

.item {
  margin: 5px;
  padding: 10px;
  background-color: lightgray;
  border-radius: 5px;
  display: inline-block;
  flex-wrap: wrap;
}

#resultsContainer {
  display: inline-flex;
  flex-wrap: wrap;
}

#inputField::-webkit-calendar-picker-indicator {
  display: none;
}