/* Thumbnail Styles */
.thumbnail {
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
    cursor: pointer;
    object-fit: cover;
}

.thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.active-thumb {
    border: 3px solid white;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    z-index: 10;
}

/* Base styles for arc items */
.arc-item {
    /* Positioning handled by GSAP */
    position: absolute;
    top: 0;
    left: 0;
    /* Width/Height handled by Tailwind classes on the element */
    pointer-events: none;
    opacity: 0;
    /* Ensure no list styles interfere */
    display: flex;
    list-style: none;
}