/* Styling for bullet lists and indentation */

/* General list styling */
li[data-list="ordered"] {
    list-style-type: decimal;
    margin-left: 1.5em;
}

/* Styling for bullet lists */
li[data-list="bullet"] {
    list-style-type: disc;
    display: list-item;
    margin-left: 1.5em;
}

/* Indentation for level 1 */
li.ql-indent-1 {
    margin-left: 3em;
}

/* Indentation for level 2 */
li.ql-indent-2 {
    margin-left: 4.5em;
}

/* Indentation for level 3 */
li.ql-indent-3 {
    margin-left: 6em;
}

/* Add more levels as needed */
