.checkbox-group {
    margin-bottom: 20px;
    border-radius: 10px;
    width: 85%;
    background-color: rgb(255, 255, 255);
    border: 3px solid #ccc;
    padding: 10px;
    padding-top: 0px;
    padding-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    border-color: #2e7d32;
    background-color: #2e7d32;
}

.checkbox-group input[type="text"] {
    width: 88%;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ddd;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.disabled-input {
    opacity: 0.5;
    cursor: not-allowed;
}

.disabled-button {
    opacity: 0.5;
    cursor: not-allowed;
}