/* Typing cursor animation styles */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

#search-input::placeholder {
    animation: blink 1s infinite;
}

/* Focus style removes animation */
#search-input:focus::placeholder {
    animation: none;
}
