/* study-guide specific styles */

/* Checkbox group styling */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    cursor: pointer;
    font-weight: normal;
    color: inherit;
    white-space: nowrap;
}

.checkbox-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #ff6b35;
    flex-shrink: 0;
}

/* Responsive checkbox layout */
@media (max-width: 768px) {
    .checkbox-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Custom styles can be added here if needed */
/* Currently using inherited styles from main theme */