table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

thead {
  background: #f8f8f8;
  font-weight: bold;
}

th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

tr:hover {
  background: #f9f9f9;
}

h2 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

/* Toggle Switch */
.feature-switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}

.feature-switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #bbb;
  transition: .3s;
  border-radius: 50px;
}

.slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  transition: .3s;
  border-radius: 50px;
}

input:checked + .slider {
  background-color: #27ae60;
}

input:checked + .slider:before {
  transform: translateX(20px);
}
