html{
  background-color: #fffffff;
}

table{
  border-collapse: collapse;
  border 1px solid black;
  margin: 0 auto;
  margin-top: 5px;
  min-width: 75%;
}

th{
  background-color: #8f8f8f
}

th, td{
  border: 1px solid black;
  padding: 5px;
}
 #container{
   width: 100%;
   margin: 0 auto;
   text-align: center;
   min-width: min-content;
 }

table tr:nth-child(odd) {
  background-color: #d9d9d9; /* Light gray for odd rows */
}

table tr:nth-child(even) {
  background-color: #ffffff; /* White for even rows */
}

#popup{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border: 1px solid #000000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

button{
  width: 20%;
  min-width: min-content;
  font-size: 30px;
  height: 50px;
  text-wrap: nowrap;
}
#buttons{
  text-wrap: nowrap;
}