/* Image loading styles */
.tile-image-container {
    position: relative;
    width: 100%;
    height: 195px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.tile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tile-image.loaded {
    opacity: 1;
}

.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #20202000 25%, #ffffff1b 50%, #20202000 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 16px 16px 0 0;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
