.skelton-container {
    max-width: 1000px;
    margin: 0 auto;
}

.skeleton-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skeleton-item.highlighted {
    background: #14b8a6;
    border: none;
}

.skeleton-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.skeleton-time {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlighted .skeleton-time {
    background: white;
}

.skeleton-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skeleton-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.skeleton-instructor {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.skeleton-bar {
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.highlighted .skeleton-bar {
    background: #5eead4;
}

.skeleton-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

.skeleton-button {
    background: #e2e8f0;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.highlighted .skeleton-button {
    background: white;
}

.skeleton-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Specific dimensions for skeleton elements */
.time-skeleton {
    width: 64px;
    height: 16px;
}

.title-skeleton-1 {
    width: 256px;
    height: 20px;
}

.title-skeleton-2 {
    width: 256px;
    height: 20px;
}

.title-skeleton-3 {
    width: 288px;
    height: 20px;
}

.title-skeleton-4 {
    width: 320px;
    height: 20px;
}

.subtitle-skeleton {
    width: 80px;
    height: 12px;
}

.instructor-name {
    width: 96px;
    height: 16px;
}

.instructor-title {
    width: 64px;
    height: 12px;
}

.button-skeleton {
    width: 96px;
    height: 40px;
}

@media (max-width: 768px) {
    .skeleton-item {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .skeleton-right {
        justify-content: space-between;
    }

    .skeleton-instructor {
        text-align: left;
    }
}
