


.custom-switch .form-check-input {
    width: 40px;
    height: 20px;
    margin-left: -1.5rem;
    /* background-color: #6c757d; */
    background-color: #6c757da3;
    border-radius: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
}
.custom-switch .form-check-input::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}
.custom-switch .form-check-input:checked {
    background-color: #0d6efd;
}
.custom-switch .form-check-input:checked::before {
    transform: translateX(20px);
}
.form-check {
    display: flex;
    align-items: center;
}
.form-check-label {
    margin-left: 1rem;
    margin-top: 5px;
    margin-bottom: 2px;
}