/* Skeleton loader for hotel cards */
.skeleton-card .skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    border-radius: 4px;
    min-height: 16px;
    position: relative;
    overflow: hidden;
    animation: skeleton-loading 1.2s infinite linear;
}
.skeleton-card .skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}
.skeleton-card .skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}
.skeleton-card .skeleton-img {
    height: 180px;
    background: #e0e0e0;
    border-radius: 8px 8px 0 0;
    animation: skeleton-loading 1.2s infinite linear;
}
.skeleton-card .skeleton-icon {
    width: 28px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    animation: skeleton-loading 1.2s infinite linear;
}
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Skeleton loader for rental cards (same as hotel) */
.skeleton-card .skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 37%, #f0f0f0 63%);
    border-radius: 4px;
    min-height: 16px;
    position: relative;
    overflow: hidden;
    animation: skeleton-loading 1.2s infinite linear;
}
.skeleton-card .skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}
.skeleton-card .skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}
.skeleton-card .skeleton-img {
    height: 180px;
    background: #e0e0e0;
    border-radius: 8px 8px 0 0;
    animation: skeleton-loading 1.2s infinite linear;
}
.skeleton-card .skeleton-icon {
    width: 28px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    animation: skeleton-loading 1.2s infinite linear;
}
@keyframes skeleton-loading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

