body {
  padding: 50px;
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

td {
  text-align: left;
}

.delete-button {
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
  color: red;
  cursor: pointer;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #ccc;
  background-color: #fff;
}
.onehundred {
  width: 100%;
}
.eighty {
  width: 80%;
}
.seventy {
  width: 70%;
}
.sixtyfive {
  width: 65%;
}
.sixty {
  width: 60%;
}
.fifty {
  width: 50%;
}
.fortyfive {
  width: 45%;
}
.forty {
  width: 40%;
}
.thirtyfive {
  width: 35%;
}
.thirty {
  width: 30%;
}
.twentyfive {
  width: 25%;
}
.twenty {
  width: 20%;
}
.fifteen {
  width: 15%;
}
.ten {
  width: 10%;
}
.seven {
  width: 7%;
  text-align: right;
  margin-right: 0;
}
.five {
  width: 5%;
  text-align: right;
  margin-right: 0;
}
.three {
  width: 3%;
  text-align: right;
  margin-right: 0;
}
.four {
  width: 4%;
  text-align: right;
  margin-right: 0;
}
.forty {
  width: 40%;
}

main {
  margin: 0 auto;
  padding: 20px;
  background-color: #eeeeee;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

th,
td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}


.arrow {
  border: solid #6e6e6e;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}


.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 55%; /* Full-width */
  height: 15px; /* Specified height */
  background: #d4d4d4; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 10px; /* Set a specific slider handle width */
  height: 30px; /* Slider handle height */
  background: #555555; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #04AA6D; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

