.switch-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: grey;
}

.switch-input {
    display: none;
}

.switch-slider {
    position: relative;
    width: 40px;
    height: 20px;
    background: #7cd0f2;
    border-radius: 20px;
    transition: 0.3s;
}

.switch-slider::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #f4f4f4;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.switch-input:checked + .switch-slider {
    background: #2462ab;
}

.switch-input:checked + .switch-slider::before {
    transform: translateX(20px);
}


/* Custom color for the checkbox */
.custom-checkbox-1 input[type="checkbox"] {
    accent-color: #2462ab; /* Bootstrap primary color */
}