.webapp-status {
    position: fixed;
    top: 0;
    left: 12px;
    right: 12px;
    z-index: 30;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    margin: 0;
    text-align: center;
    display: none;
}
.webapp-status.show {
    display: block;
}
.webapp-status.ok {
    background: #dcfce7;
    color: #166534;
}
.webapp-status.warn {
    background: #fef9c3;
    color: #854d0e;
}
@media (max-width: 900px) {
    .webapp-status {
        left: 8px;
        right: 8px;
    }
}
