.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-hidden {
    display: none !important;
}

.loading-container {
    display: flex;
    gap: 16px;
}

.bar {
    width: 16px;
    height: 80px;
    background-color: #1e2188;
    border-radius: 999px;
}

.bar:nth-child(2) {
    background-color: #009e96;
    animation-delay: 0.1s;
}

.bar:nth-child(3) {
    animation-delay: 0.2s;
}

.bar:nth-child(4) {
    animation-delay: 0.3s;
}

.bar:nth-child(5) {
    animation-delay: 0.4s;
}

.animate {
    animation: loading 1s ease-in-out infinite;
}

@keyframes loading {
    0%, 100% {
        transform: scaleY(1);
    }
    50% {
        transform: scaleY(0.3);
    }
}