/* Always show suggested note action buttons and hide AI badge */

/* Hide AI Generated status badge */
[data-section="suggested-actions"] .clean-tile.note .tile-status {
    display: none !important;
}

/* Always show action buttons (override hover behavior) */
[data-section="suggested-actions"] .clean-tile.note .tile-actions {
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
}

/* Since buttons are always visible, ensure they don't overlap with content */
[data-section="suggested-actions"] .clean-tile.note .tile-header-right {
    min-width: auto;
    gap: 0.5rem;
}

/* Make buttons slightly more prominent since they're always visible */
[data-section="suggested-actions"] .clean-tile.note .tile-actions .action-btn {
    background-color: rgba(34, 197, 94, 0.3);
    border-color: rgba(34, 197, 94, 0.5);
}

[data-section="suggested-actions"] .clean-tile.note .tile-actions .clear-btn {
    background-color: rgba(239, 68, 68, 0.3);
    border-color: rgba(239, 68, 68, 0.5);
}

/* Adjust button hover states to be more visible */
[data-section="suggested-actions"] .clean-tile.note .tile-actions .pin-btn:hover {
    background-color: rgba(34, 197, 94, 0.5);
    border-color: rgba(34, 197, 94, 0.8);
    transform: scale(1.05);
}

[data-section="suggested-actions"] .clean-tile.note .tile-actions .clear-btn:hover {
    background-color: rgba(239, 68, 68, 0.5);
    border-color: rgba(239, 68, 68, 0.8);
    transform: scale(1.05);
}

/* Remove the sparkle effect from AI notes since we're not showing AI badge */
.clean-tile.note .tile-icon::after {
    display: none !important;
}