/* Skeleton table styles */
.skeleton-table {
    width: 100%;
}

.skeleton-loading {
    position: relative;
    background: #E2E5E7;
    overflow: hidden;
}

.skeleton-loading::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    animation: shimmer 2s infinite;
    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) 100%
    );
    transform: translateX(-100%);
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.skeleton-row {
    height: 40px;
}

.skeleton-cell {
    padding: 12px;
    border: 1px solid #dee2e6;
}

.skeleton-header {
    background: #f8f9fa;
    height: 50px;
}

.skeleton-text {
    height: 15px;
    width: 100%;
    border-radius: 3px;
}

.showPaymentsPDF {
    color: brown;
	font-size: larger;
	line-height: initial;
}