.image-container {

}

.skeleton-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    border-radius: 8px;
    /* Rounded corners for a modern look */
    animation: shimmer 1.5s infinite ease-in-out;
    /* Smoother animation */
    z-index: 1;
    overflow: hidden;
    /* Ensures rounded corners are visible */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
}

.image-container img {

}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
        /* Start from the left */
    }

    100% {
        background-position: 200% 0;
        /* Move to the right */
    }
}