.skeleton-loader {
    display: inline-block;
    height: 16px;
    background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

.w-50 {
    width: 50%;
    height: 24px;
}

.w-75 {
    width: 75%;
    height: 16px;
}

.skeleton-text {
    display: inline-block;
    height: 20px;
    border-radius: 4px;
}

.skeleton-image {
    display: block;
}

.skeleton-badge {
    width: 180px;
    height: 25px;
    border-radius: 12px;
}

/* Skeleton Button */
.skeleton-button {
    width: 120px;
    height: 40px;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

#list-bills .skeleton-status {
    width: 100%;
    height: 30px;
    border-radius: 6px;
}