﻿@keyframes shimmer {
    0%

{
    background-position: -200% 0;
}

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

}

.shimmer {
    background-color: #e5e7eb;
    background-image: linear-gradient(to right, #e5e7eb 0%, #f3f4f6 50%, #e5e7eb 100%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    animation: shimmer 1.5s linear infinite;
}

.dark .shimmer {
    background-color: #4b5563;
    background-image: linear-gradient(to right, #4b5563 0%, #6b7280 50%, #4b5563 100%);
}

