
/* --- New Loaders for Analysis Steps --- */

/* 1. Polling (Orbit) - Tech/Processing Feel */
.loader-orbit {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #d4af37; /* Gold */
    animation: spin 1.5s linear infinite;
    position: relative;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.3));
}
.loader-orbit:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #2e7d32; /* Forest Green */
    animation: spin 2s linear infinite reverse;
}
.loader-orbit:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f1f8e9; /* Off-white */
    animation: spin 1s linear infinite;
}

/* 2. Analyzing (Wave) - Rhythm Feel */
.loader-wave {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-bottom: 20px;
    gap: 6px;
}
.loader-wave div {
    width: 6px;
    height: 100%;
    background: linear-gradient(to top, #1b5e20, #d4af37); /* Deep Green to Gold */
    animation: wave 1.2s infinite ease-in-out;
    border-radius: 4px;
}
.loader-wave div:nth-child(1) { animation-delay: -1.1s; }
.loader-wave div:nth-child(2) { animation-delay: -1.0s; }
.loader-wave div:nth-child(3) { animation-delay: -0.9s; }
.loader-wave div:nth-child(4) { animation-delay: -0.8s; }
.loader-wave div:nth-child(5) { animation-delay: -0.7s; }

@keyframes wave {
    0%, 40%, 100% { transform: scaleY(0.4); opacity: 0.6; }
    20% { transform: scaleY(1.0); opacity: 1; box-shadow: 0 0 15px rgba(212, 175, 55, 0.5); }
}
