/* Role Checkboxes */
.role-checkboxes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checkbox-item:hover {
    background: #e5e7eb;
}

.checkbox-item input[type='checkbox'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-item input[type='checkbox']:checked + span {
    font-weight: 600;
    color: var(--primary-color);
}

.checkbox-item:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(208, 167, 100, 0.1);
}

/* Yes/No Questions */
.yes-no-questions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.yes-no-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.yes-no-item:hover {
    background: #e5e7eb;
}

.yes-no-item input[type='checkbox'] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.yes-no-item input[type='checkbox']:checked + span {
    font-weight: 600;
    color: var(--primary-color);
}

.yes-no-item:has(input:checked) {
    border-color: var(--primary-color);
    background: rgba(208, 167, 100, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .role-checkboxes {
        grid-template-columns: 1fr;
    }
}
