.loading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #007bff, #00d4ff);
    animation: progressAnimation 1.5s infinite linear;
    z-index: 9999;
    display: none;
}

[wire\:navigate] .loading-progress-bar {
    display: block;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 50%; }
    100% { width: 100%; }
}