body {
  margin: 0 auto;
  background-color: powderblue;
  font-size: 100%;
  font-family: verdana;
  overflow: hidden;
}


h1 {
  color: red;
  font-family: verdana;
  font-size: 1em;
  font-weight: bold;
}

p {
  color: black;
  font-family: verdana;
  font-size: 1em;
  font-weight: bold;
}

ul, li {
    margin: 0; padding: 0;
    list-style-type: none;
    text-indent : -10px ;
    margin-left: 10px
}

table {
    width: 900px;
}

th,
td {
    width: auto;
    overflow: hidden;
    word-wrap:break-word;
}

td+td {
    width: 75px;
    overflow: hidden;
    word-wrap:break-word;
}

.toggle-list {
  display: none; /* Hide by default */
}

/* When the checkbox is checked, display the adjacent ul element */

input[type="checkbox"]:checked + label + .toggle-list {
  display: block;
}

.overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.4);
    padding: 10px;
    border-radius: 5px;
}

.scroll-box {
    width: 800px;
    height: 1500px;
    overflow: auto;
    border: 1px solid #ccc;
    padding: 10px;
} 


