#app-loading-div {
    position: fixed;
    z-index: 9999;
    background: #0071e3;
    width: 100vw;
    height: 100vh;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
    user-select: none;
    pointer-events: none;
    overflow: hidden;
}

#app-loading-div .loader-wrapper {
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#app-loading-div .logo {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 4px;
    padding-left: 6px;
}

#app-loading-div .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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