button{
  padding:5px;
  font-size:16px;
  color:white;
  margin-top:8px;
}

.accepted{
  background:#2095f2;
}

.denied{
  background:#aaaaaa;
}

th,td{
  padding:8px;
}

/* Hide default input */
.toggle input {
  display: none;
}

/* The container and background */
.toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 22px;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #bbbbbb;
  border: 1px solid #555555;
  border-radius: 15px;
  transition: all 0.4s;
  border:none;
}

/* The sliding button */
.slider:before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  left: 2px;
  top: 2px;
  background-color: #ffffff;
  border-radius: 15px;
  transition: all 0.4s;
}

/* On checked */
input:checked + .slider {
  background-color: #2095f2;
}
input:checked + .slider:before {
  transform: translateX(28px);
}
