.skeleton-loader {
    background: linear-gradient(
            270deg,
            rgba(69, 77, 85, 1) 25%,
            rgba(52, 58, 64, 1) 50%,
            rgba(69, 77, 85, 1) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite;
    border-radius: 0.25rem; /* Bootstrap-like rounded corners */
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}