/* Improved Checkbox Styles */
.checkbox-group {
    margin-bottom: 1.2rem !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.8rem !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: #333 !important;
    user-select: none !important;
}

.checkbox-label:hover .checkbox-custom {
    border-color: #2c5aa0 !important;
}

.checkbox-label input[type="checkbox"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
    height: 0 !important;
    width: 0 !important;
}

.checkbox-custom {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    border: 2px solid #c1c1c1 !important;
    border-radius: 5px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    background: white !important;
    margin-top: 2px !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #2c5aa0 !important;
    border-color: #2c5aa0 !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '' !important;
    position: absolute !important;
    display: block !important;
    left: 6px !important;
    top: 2px !important;
    width: 5px !important;
    height: 10px !important;
    border: solid white !important;
    border-width: 0 2.5px 2.5px 0 !important;
    transform: rotate(45deg) !important;
}

.checkbox-label input[type="checkbox"]:focus + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1) !important;
}
