body {
  background: #f0f0f1;
  color: #3c434a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell,
    "Helvetica Neue", sans-serif;
  font-size: 13px;
  line-height: 1.4em;
  min-width: 600px;
}

/* Toggles */
/* Container for the toggle switch */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

/* Hide the default checkbox */
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 14px;
}

/* The slider knob */
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 3px;
  background-color: #fff;
  transition: 0.4s;
  border-radius: 50%;
}

/* When the input is checked, change background */
.toggle-switch input:checked + .toggle-slider {
  background-color: #2271b1;
}

/* Move the knob when checked */
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Focus effect */
.toggle-switch input:focus + .toggle-slider {
  box-shadow: 0 0 1px #2271b1;
}

.statusPill {
  font-size: 12px;
}
