body {
  background-color: white;
  color: black;
  font-family: Arial;
}

.table-wrapper {
  overflow: hidden;
  width: 90%;
  border: 3px solid #004000;
  border-radius: 50px;
  min-height: 0px;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 300px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  margin-top: -2px;
  margin-left: -2px;
  background: linear-gradient(150deg, rgba(77,166,77,1) 0%, rgba(235,237,147,0.5) 100%), rgba(77,166,77,1);
  border-radius: 50px;
}

td, th {
  border: 1.5px solid white;
  text-align: center;
  vertical-align: middle;
  padding: 5px 10px;
}

th {
  height: 30px;
  max-height: 30px;
}

.th {
  height: 50px;
  max-height: 50px;
  font-size: 120%;
  padding: 20px;
}

.flex {
 display: flex; 
 flex-wrap: wrap;
 gap: 2%; 
 width: 90%;
 margin-left: 4%;
 margin-top: 10px;
}