.skeleton-link {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: #f6f6f6;
    border-radius: 8px;
    padding: 10px;
    animation: shimmer 1.5s infinite linear;
    position: relative;
}

.skeleton-thumb {
    width: 60px;
    height: 60px;
    background: #eee;
    border-radius: 8px;
    margin-right: 10px;
}

.skeleton-text {
    width: 100%;
    height: 15px;
    background: #eee;
    border-radius: 4px;
    margin-bottom: 5px;
}

.skeleton-text.short {
    width: 50%;
}

.skeleton-button {
    width: 80px;
    height: 20px;
    background: #eee;
    border-radius: 4px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

@keyframes shimmer {
    0% {
        background-color: #f6f6f6;
    }
    50% {
        background-color: #e0e0e0;
    }
    100% {
        background-color: #f6f6f6;
    }
}