/* Checkbox-Label */
.form-check-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Checkbox-Input */
.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Checkbox-Input checked */
.form-check-input:checked ~ .form-check-label {
    background-color: #e0a800;
}

/* Checkbox-Label hover */
.form-check-label:hover {
    background-color: #e0a800;
}

.disclaimer-box {
    padding: 15px;
    background-color: #e0a800;
    border: 1px solid #ffc107;
    margin: 20px 0;
    text-align: center;
}
.toggle-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.toggle-container label {
    margin: 0 10px;
}

.form-check {
    margin-bottom: 10px;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
}

.slider input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider .slider-track {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider .slider-thumb {
    position: absolute;
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider-track {
    background-color: #e0a800;
}

input:checked + .slider-track .slider-thumb {
    transform: translateX(26px);
}