﻿/* Skeleton Loader */
.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

    .fade-in.show {
        opacity: 1;
    }

.skeleton-card {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    background: #f3f3f3;
    margin-bottom: 10px;
}

.skeleton-img {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 50%;
    margin-right: 10px;
    animation: shimmer 1.5s infinite linear;
}

.skeleton-text {
    height: 10px;
    width: 80%;
    background: #ddd;
    border-radius: 4px;
    animation: shimmer 1.5s infinite linear;
}

    .skeleton-text.short {
        width: 50%;
        margin-top: 5px;
    }

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}
