/* Keep the input usable even if other scripts try to gray it out */
#mgd-search-input[aria-busy="true"]{
    background-image: linear-gradient(90deg, rgba(0,0,0,0.03), rgba(0,0,0,0));
    background-size: 200% 100%;
    animation: mgd-shimmer 1s linear infinite;
}
@keyframes mgd-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
