.skip-arrow-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blinking-arrow {
    display: inline-block;
    color: white;
    font-size: 36px;
    font-weight: bold;
    cursor: pointer;
    animation: blink 1.5s infinite;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    pointer-events: auto;
    transition: transform 0.2s;
}

.blinking-arrow:hover {
    transform: scale(1.2);
}

@keyframes blink {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.mdw-horizontal-scroll-is-visible .skip-arrow-container {
    opacity: 1;
    pointer-events: auto;
}