/* Skeleton Container */
#progress_Loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px; /* lebih tebal */
    width: 0;
    background: linear-gradient(90deg, var(--lann-primary), var(--lann-primary), var(--lann-primary));
    background-size: 200% 100%;
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(213, 108, 61, 0.8), 0 0 30px rgba(255, 153, 102, 0.6);
    backdrop-filter: blur(4px); /* efek kaca */
    opacity: 0.95;
    z-index: 9999;
    transition: width 0.4s ease, opacity 0.5s ease;
    animation: gradientMove 2s linear infinite; /* animasi gradient */
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
