.jigger-animation-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.jigger-animation-container.visible {
    opacity: 1;
    animation: jigger-pulse 1.5s infinite ease-in-out;
}

.jigger-icon {
    width: 80px;
    height: auto;
}

@keyframes jigger-pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}