﻿/* --- 1. UNIFIED BRAND TOKENS (Source of Truth) --- */
:root {
    --brand-bg: #F8FAFC;
    --brand-primary: #F28627;
    --brand-text: #0F172A;
    --brand-font: 'Exo 2', sans-serif;
}

/* --- 2. LOADER UI --- */
.boost-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    background-color: var(--brand-bg);
    transition: background-color 0.4s ease-in-out;
}

.boost-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Circular Spinner matching Radzen style */
.boost-loader-spinner-circular {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(0, 0, 0, 0.05); /* Track */
    border-radius: 50%;
    border-top: 4px solid var(--brand-primary); /* Progress */
    animation: boost-spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.boost-loader-text {
    font-family: var(--brand-font);
    color: var(--brand-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.7;
    animation: boost-pulse-text 2s ease-in-out infinite;
}

/* --- 3. ANIMATIONS --- */
@keyframes boost-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes boost-pulse-text {
    0%, 100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }
}
