/* Basic list styling */
.note-editable ul,
.note-editable ol {
    padding-left: 25px;
    margin: 0.5em 0;
}

/* List item spacing */
.note-editable ul li,
.note-editable ol li {
    line-height: 1.5;
    margin: 0.25em 0;
}

/* Paragraph handling in list items */
.note-editable ul li p,
.note-editable ol li p {
    margin: 0;
    display: inline-block;
}

/* List spacing */
.note-editable ul + ul,
.note-editable ol + ol,
.note-editable ul + ol,
.note-editable ol + ul {
    margin-top: 0.5em;
}

/* List marker positioning */
.note-editable ol {
    list-style-position: outside;
    counter-reset: item;
}

/* Ensure proper list numbering */
.note-editable ol > li {
    display: block;
}
