html {
    font-family: sans-serif;
}

.loading-app-container {
    height: 100%;
    width: 100%;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: center;
    background: #f8f8ff;
}

.ant-result {
    padding: 48px 32px;
}

.ant-result-icon {
    margin-bottom: 24px;
    text-align: center;
}

.ant-result-title {
    color: #000000d9;
    font-size: 24px;
    line-height: 1.8;
    text-align: center;
}

.ant-result-extra {
    margin: 24px 0 0;
    text-align: center;
}

/* Chiox-branded loading spinner (red + dark grey on light background) */
.loading-spinner {
    width: 36px;
    height: 36px;
    margin: 20px auto 0;
    border: 3px solid #4a4a4a;
    border-top-color: #c41e3a;
    border-radius: 50%;
    animation: loadingCircle 0.9s linear infinite;
}

.anticon-spin,.anticon-spin:before {
    animation: loadingCircle 1s linear infinite;
    display: inline-block
}

@keyframes loadingCircle {
    to {
        transform: rotate(1turn)
    }
}
