﻿/* Overlay stays the same */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

/* Loader container stays the same */
.stripe-loader {
    display: flex;
    gap: 6px;
}

/* Base stripe style */
.stripe {
    width: 6px;
    height: 28px;
    border-radius: 4px;
    animation: stripeBounce 1s infinite ease-in-out;
    opacity: 0.95;
}

    /* Alternating colors */
    .stripe:nth-child(odd) {
        background: #D3D3D3; /* light grey */
    }

    .stripe:nth-child(even) {
        /* background: #C62828; /* Acordia-style deep red */
        /* background: #2ECC71; /* success green */
        background: #0a38ed; /* blue */
    }

    /* Wave animation timing (keep what you had) */
    .stripe:nth-child(1) {
        animation-delay: 0s;
    }

    .stripe:nth-child(2) {
        animation-delay: 0.1s;
    }

    .stripe:nth-child(3) {
        animation-delay: 0.2s;
    }

    .stripe:nth-child(4) {
        animation-delay: 0.3s;
    }

    .stripe:nth-child(5) {
        animation-delay: 0.4s;
    }

@keyframes stripeBounce {
    0%, 100% {
        transform: scaleY(0.6);
    }

    50% {
        transform: scaleY(1.3);
    }
}