/* ==========================================================================
   Dashboard Minimalist Hi-Tech Loader (Larger)
   ========================================================================== */

#dashboard-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Premium Glassmorphism effect */
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Ensure it's above everything */
    opacity: 1;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}


#dashboard-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-animation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px; /* Increased gap */
    margin-bottom: 30px; /* Increased spacing */
    height: 80px; /* Increased container height */
}

/* Minimalist Hi-Tech Bars - ENLARGED */
.loader-bar {
    width: 8px; /* Was 4px */
    height: 20px; /* Was 10px */
    background-color: #1e40af; /* Dark blue element */
    border-radius: 4px; /* Was 2px */
    animation: hiTechSync 1.2s cubic-bezier(0.86, 0, 0.07, 1) infinite;
}

.loader-bar:nth-child(1) {
    animation-delay: 0s;
}

.loader-bar:nth-child(2) {
    animation-delay: 0.15s;
}

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

@keyframes hiTechSync {
    0%, 100% {
        height: 20px;
        opacity: 0.4;
    }
    50% {
        height: 70px; /* Was 36px */
        opacity: 1;
    }
}

/* Minimalist Text - ENLARGED */
.loader-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; /* Was 0.75rem */
    font-weight: 600;
    letter-spacing: 5px; /* Slightly wider spacing */
    color: #0f172a; /* Dark text */
    text-transform: uppercase;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}


