﻿#order-status {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 80vh;
}

#order-status > * {
    padding: 1rem;
    width: 800px;
    
}

#status-pending {
    background-color: var(--blue-100);
}

#status-failed {
    background-color: var(--pink-100);
    display: none;
}

#status-complete {
    background-color: var(--green-100);
    display: none;
}

#qrcode {
    width: 256px;
    height: 256px;
    margin: 0 auto;
}