* {
  /* Reset browser's padding and margin */
  margin: 0;
  padding: 0;
  box-sizing: border-box; 
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
}

#sidenav {
  font-family: 'Roboto', sans-serif;
}

#sidebar {
    width: 250px;
    min-width: 250px;
    padding-left: 40px;
    overflow-y: auto;
    flex-shrink: 0;
    font-size: 16px;
    font-family: 'TheSans', sans-serif;
}

#sidebar p, ul, ol {
    line-height: 1.4em;
    font-size: 10pt;
}

#sidebar li {
    margin: 0 0 .2em;
    padding: 0;
}

#sidebar a {
    color: #049;
    text-decoration: none;
    font-family: 'TheSans', sans-serif;
    font-size: 13.3333px;
}

hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.accordion {
  position: relative;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  transition: 0.4s;
  background-color: #f1f1f1;
  font-weight: bold;
}

.icon {
  position: absolute;
  right: 10px; /* Positioning the icon on the right */
  transition: transform 0.4s; /* Smooth transition */
}

.panel {
  padding: 0 10px;
  overflow: hidden;
  background-color: #f1f1f1;
  margin-bottom: 10px; /* Space between panels */
}

/* Rotate icon when the accordion is active */
.accordion.active .icon.closed {
  transform: rotate(180deg); /* Flip the closed icon */
}

.accordion.active .icon.open {
  display: inline; /* Show open icon when active */
}

.accordion .icon.open {
  display: none; /* Hide open icon when not active */
}

#sidenav a {
text-decoration: none;
}

#sidenav a div:hover {
background-color: #c0bcbc;
}

.spec-nav-main {
  margin-left: 250px; /* Width of the sidenav */
  padding: 20px;
}

#reload {
text-align: center;
text-decoration: none;
}

h1 {
  margin: 10px;
  text-align: center;
  background-color: rgb(235, 198, 235);
}

#mainContent {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 10px;
  margin-top: 0px;
}


.tag{
  color:red;
}
#aoes{
  display:none;
  height:300px;
  margin: 10px;
  margin-top: 0px;
}
.highlight {
  background-color: yellow; /* Highlight color */
  font-weight: bold; /* Optional for emphasis */
}
#sourceButtons table{
  margin:0;
  padding:0;
  white-space: nowrap;
}
#testButtons,#typeButtons,#sourceButtons{
  font-size: 22pt;
  padding: 10px;
}
#sourceButtons button {
  background-color: #bacaf5; 
  color: black; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margin around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}
#typeButtons button {
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margin around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}
#testButtons button {
  background-color: rgb(173, 240, 173); /* Green background */
  color: black; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margin around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}

#testButtons button:hover,#typeButtons button:hover,#sourceButtons button:hover {
  background-color: #bacaf5; /* Darker green background on hover */
}
body{
  font-size: large;
} 

.label{
  font-size: 22pt;
  margin-left: 10px;
  margin-top: 10px;
  margin-bottom: 4px;
  
  
  
}
.container {
  margin-left: 10px;
  border:1px solid black;
  
  width: 500px;
  height: 60px;
  display: flex;
  flex-direction: row;
  
}

/* The point of this tutorial is here */

.search-field {
  width: 100%;
  padding: 10px 35px 10px 15px;
  border: none;
  border-radius: 100px;
  outline: none;
  font-size: 22pt;
}

.search-button {
  background: transparent;
  border: none;
  outline: none;
  margin-left: -33px;
  cursor: pointer; /* Pointer cursor on hover */
}

.search-button img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}
#blueButton {
  font-size: 14px;
  background-color: #bacaf5; 
  color: black; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margin around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}
#greenButton {
  font-size: 14px;
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margin around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}
#blackButton {
  font-size: 14px;
  background-color: rgb(173, 240, 173); /* Green background */
  color: black; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margi around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}
#redButton {
  font-size: 14px;
  background-color: red; /* Green background */
  color: white; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margi around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}
#whiteButton {
  font-size: 14px;
  background-color: white; /* Green background */
  color: gray; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margi around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
}

.extra-audit {
  display: none;
}

.button {
  cursor: pointer;
}

.button:hover {
  background-color: #c0bcbc;
}

#selector-row {
  max-height: 20px;
  text-align: center;
  font-weight: normal;
}

#st_fb_sn_name {
  font-weight: bold;
}

#st_fb_arrow {
  display: none;
}

#st_fb_type {
  display: none;
}


.blue-button {
  background-color: #bacaf5; 
  color: black; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margin around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
  font-family: 'Roboto', sans-serif;
}


.green-button {
  background-color: #4CAF50; /* Green background */
  color: white; /* White text */
  padding: 5px 12px; /* Padding inside the button */
  margin: 2px 1px; /* Margin around buttons */
  border: none; /* No border */
  border-radius: 5px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth background color change on hover */
  font-family: 'Roboto', sans-serif;
}

.st_fb_not_selected {
  font-style: italic;
  color: gray;
}

.button-pressed {
  filter: brightness(0.7); /* Darken any background color by 30% */
}

.button-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.button-grid::after {
  content: "";
  flex: auto;
}

/* Tablet styles (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #testButtons, #typeButtons, #sourceButtons {
    font-size: 26pt;
    padding: 15px;
  }
  
  #sourceButtons button, #typeButtons button, #testButtons button {
    font-size: 18px;
    padding: 12px 20px;
    margin: 6px 3px;
    min-height: 50px;
    min-width: 120px;
    display: inline-block;
    text-align: center;
  }

  .search-field {
    font-size: 24pt;
    padding: 12px 40px 12px 18px;
  }
  
  .container {
    width: 600px;
    height: 70px;
  }

  #aoes{
    border:none;
  }
}

/* Smartphone styles (max-width: 767px) */
@media screen and (max-width: 767px) {
  .spec-nav-main {
    margin-left: 0; /* Remove side nav margin on mobile */
    padding: 10px;
  }
  
  #testButtons, #typeButtons, #sourceButtons {
    font-size: 32pt;
    padding: 20px 10px;
    text-align: center;
  }
  
  #sourceButtons button, #typeButtons button, #testButtons button {
    font-size: 24px;
    padding: 15px 25px;
    margin: 8px 4px;
    min-height: 60px;
    min-width: 140px;
    display: inline-block;
    text-align: center;
  }

  #aoes{
    border:none;
  }
  
  .search-field {
    font-size: 26pt;
    padding: 15px 45px 15px 20px;
  }
  
  .container {
    width: 95%;
    height: 80px;
    margin: 10px auto;
  }
  
  #mainContent {
    flex-direction: column;
    align-items: center;
  }
  
  .label {
    font-size: 26pt;
    text-align: center;
    margin: 15px 0 8px 0;
  }
  
}