.header-loading {
    display: flex;
    align-items: center;
    background-color: var(--geaui-night-blue);
    height: 60px;
    position: absolute;
    width: 100%;
    top: 0;
}

.header-logo {
    position: absolute;
    left: 64px;
    top: 20px;
}

.app-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 50px;
    background: var(--geaui-grey-06);
}

.loading-container {
    padding: 40px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--geaui-pure-white);
    box-shadow: -3px 3px 12px 0 var(--geaui-grey-02);
}

.loading-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 6px solid var(--geaui-primary);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transition: all 0.3s;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
