.skeleton-loader {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.skeleton-item {
    background-color: #e0e0e0;
    border-radius: 4px;
    animation: shimmer 1.5s infinite;
}

.skeleton-title {
    width: 60%;
    height: 20px;
}

.skeleton-text {
    width: 100%;
    height: 45px;
}

@keyframes shimmer {
    0% {
        background-color: #e0e0e0;
    }
    50% {
        background-color: #f0f0f0;
    }
    100% {
        background-color: #e0e0e0;
    }
}