* {box-sizing: border-box;}

body{
  display: flex;
  justify-content: center;
}

button{
  margin:20px;
}

.container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  /* z-index: 2; */
  color: #000;
  position: fixed;
  top: 20;
  left: 12;
}

h1 {
  color: orange;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

input, label{
  display:block;
}
.table-container {
    overflow-y: auto; /* Enable vertical scrolling */
    max-height: 200px; /* Set a maximum height for the table container */
    border: 1px solid #ccc; /* Optional border */
    z-index: 100;
  }
  
  table {
    width: 100%;
    border-collapse: collapse; /* Collapse table borders for a cleaner look */
  }
  
  th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd; /* Add bottom borders to rows */
  }
  
  /* Fixed Header Styling */
  thead th {
    position: sticky; /* Make the header sticky */
    top: 0; /* Stick to the top */
    background-color: #f2f2f2; /* Example background color for the header */
    z-index: 1; /* Ensure the header is above the table content */
  }
  
  /* Optional: Style the scrollbar */
  .table-container::-webkit-scrollbar {
      width: 10px; /* Width of the scrollbar */
  }
  
  .table-container::-webkit-scrollbar-track {
      background: #f1f1f1; /* Color of the tracking area */
  }
  
  .table-container::-webkit-scrollbar-thumb {
      background: #888; /* Color of the scroll thumb */
  }

  #msg{
    display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  }
  


  .dropup {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
  }
  
  .dropup-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    bottom: 50px;
    z-index: 1;
  }
  
  .dropup-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropup-content a:hover {background-color: #ccc}
  
  .dropup:hover .dropup-content {
    display: block;
  }
  
  .dropdowns{
    display:flex;
    justify-content:center;
    margin-top: 10px;
  }

  footer {
    display:flex;
    justify-content: space-evenly;
    background-color: #333;
    color: white;
    /* padding: 1rem; */
    align-items: center;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
  }

  tbody tr:nth-child(even) {
    background: #abd1aa;
  }

  #dropdowns {
    display:inline-block;
    text-align: right;
    /* padding-bottom: 20px; */
    margin-bottom: 10px;
  }

  #selectionOutput {
    padding-bottom: 20px;
  }

  fieldset {
    display: flex;
    flex-direction: column;
    color: #000;
    background-color: #8799a5;
    align-items: center;
    justify-content: center;
  }

  .dropbtn a {
    text-decoration: none;
    background-color: #fff;
    color: #000;

  }

  .dropbtn {
    background-color: #fff;
    color: #000;
    /* padding: 16px; */
    font-weight: 900;
    font-size: 24px;
    border: none;
  }
/* .btnSection{
  padding-bottom: 2rem;
} */