/* Remove bookmark icon from placeholder */
.placeholder::after {
    display: none !important;
}

/* Alternative approach to remove any content after placeholder */
.notes-list .placeholder {
    position: relative;
}

.notes-list .placeholder::after {
    content: none !important;
}

/* Target any elements inside placeholder */
.placeholder > * {
    display: none !important;
}

/* Hide any bookmark icons */
.fa-bookmark {
    display: none !important;
}
