:root {
  --table-blue: #1C6EA4;
}
table.programmeTable {
  border: 1px solid var(--table-blue);
  background-color: #EEEEEE;
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}
table.programmeTable td, table.programmeTable th {
  border: 1px solid #AAAAAA;
  padding: 3px 2px;
}
table.programmeTable tbody td {
  font-size: 13px;
}
table.programmeTable thead {
  background: var(--table-blue);
  background: -moz-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: -webkit-linear-gradient(top, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  background: linear-gradient(to bottom, #5592bb 0%, #327cad 66%, #1C6EA4 100%);
  border-bottom: 2px solid #444444;
}
table.programmeTable thead th {
  font-size: 15px;
  font-weight: bold;
  color: #FFFFFF;
  border-left: 2px solid #D0E4F5;
}
table.programmeTable thead th:first-child {
  border-left: none;
}

table.programmeTable tr.type1-row { background: #53A2F5; }
table.programmeTable tr.old-type1-row { background: #123861; color: grey; }
table.programmeTable tr.old-row { background: #5a5f64; color: grey; }

table.programmeTable tr:hover {background-color: #b3e6ff;}

.switch input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}

.switch input[type=checkbox]:focus {
  outline: 0;
}

.switch input+label {
  line-height: 22px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  vertical-align: top;
  z-index: 1;
  position: relative;
  margin-left: 12px;
  margin-top: 9px;
}

.toggle {
  height: 32px;
  width: 52px;
  background: #999;
  border-radius: 16px;
  display: inline-block;
  position: relative;
  margin: 0;
  border: 2px solid #474755;
  transition: all 0.2s ease;
}

.toggle:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(44, 44, 44, 0.2);
  transition: all 0.2s cubic-bezier(0.5, 0.1, 0.75, 1.35);
}

.toggle:checked {
  background: var(--table-blue);
}

.toggle:checked:after {
  transform: translatex(20px);
}

.switch_table {
  border-collapse: unset;
  border-color: blue;
  border-style: solid;
  border-spacing: 6px;
  border-radius: 16px;
}
