.cardhead {
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    padding: 0 20px;
    background-color: #07ade9;
    color: white;
    border-radius: 10px 10px 0 0;
}
.card {
    border-radius: 0 0 15px 15px !important;
}


.btn.dropdown-toggle.bs-placeholder.btn-light {
	border: 1px solid #ced4da;
}
.btn.dropdown-toggle.btn-light {
	border: 1px solid #ced4da;
}
    /* Make switch bigger */
    .form-switch .form-check-input {
      width: 100px;
      height: 32px;
      cursor: pointer;
    }

    /* Default OFF state (red) */
    .form-switch .form-check-input {
      background-color: #dc3545; /* red */
      border-color: #dc3545;
      position: relative;
    }

    /* ON state (green) */
    .form-switch .form-check-input:checked {
      background-color: #198754; /* green */
      border-color: #198754;
    }

    /* Add ON/OFF text inside track */
    .form-switch .form-check-input::before {
      content: "OFF";
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .form-switch .form-check-input:checked::before {
      content: "ON";
    }