/*
 * Important Note Highlighting
 *
 * Highlights notes containing "VOUCHER APPLIED" or "ACTION REQUIRED"
 * text with a pulsing gold/orange animation to draw staff attention.
 *
 * Added: 2025-11-27
 * Updated: 2026-01-29 - Now applies to ACTION REQUIRED (fallback) notes too
 */

.voucher-applied-highlight {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    background-size: 200% 200%;
    border: 3px solid #FF6600;
    border-radius: 8px;
    padding: 15px;
    animation: voucher-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
}

@keyframes voucher-pulse {
    0%, 100% {
        background-position: 0% 50%;
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.5);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 25px rgba(255, 165, 0, 0.8);
    }
}
