.inline-checkbox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.inline-checkbox input[type="checkbox"] {
    order: 1; /* Ensure the checkbox is on the left */
    margin-right: 8px; /* Add some spacing between the checkbox and description */
}

.inline-checkbox .description {
    order: 2; /* Keep the description on the right */
    margin: 0;
}