/* Suggested Notes - Remove Text Background/Highlight */

/* Remove any background or highlight from the suggested note text */
[data-section="suggested-actions"] .clean-tile.note .suggested-note-text {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Also ensure the quote text has no background */
[data-section="suggested-actions"] .clean-tile.note .suggested-note-quote {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove any potential highlight or selection-like styling */
[data-section="suggested-actions"] .clean-tile.note .suggested-note-text::before,
[data-section="suggested-actions"] .clean-tile.note .suggested-note-text::after {
    display: none !important;
}

/* Ensure text uses default color without any background effects */
[data-section="suggested-actions"] .clean-tile.note .suggested-note-text {
    color: #e5e7eb !important; /* Standard text color */
    text-shadow: none !important;
}

/* In case there's any hover or focus background */
[data-section="suggested-actions"] .clean-tile.note .suggested-note-text:hover,
[data-section="suggested-actions"] .clean-tile.note .suggested-note-text:focus {
    background: transparent !important;
    background-color: transparent !important;
}