.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

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

    100% {
        background-position: -200% 0;
    }
}

.section-title {
    height: 28px;
    width: 200px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.time-slots {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.time-slot {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.time-slot.featured {
    border-color: #20d9ba;
    background-color: #f0fdf9;
}

.time-text {
    height: 20px;
    width: 100px;
    border-radius: 4px;
}

.slot-count {
    height: 16px;
    width: 80px;
    border-radius: 4px;
}

.section-gap {
    height: 20px;
}

/* Responsive design */
@media (max-width: 600px) {
    .time-slots {
        flex-direction: column;
    }

    .time-slot {
        min-width: 100%;
    }
}
