/* assets/css/skeleton.css */
.skeleton-loader {
    overflow: hidden;
    position: relative;
    background-color: #f6f7f8;
    border-radius: 8px;
}

.skeleton-loader::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skeleton-card {
    height: 120px;
    margin-bottom: 24px;
}

.skeleton-table-row {
    height: 48px;
    margin-bottom: 8px;
}

.skeleton-text {
    height: 14px;
    margin-bottom: 12px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 20px;
}