.status-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 6px;
    font-size: 14px;
    font-weight: bold;
    color: white;
    z-index: 9998;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.status-banner.show {
    transform: translateY(0);
}

.status-online {
    background: #16a34a;
}

.status-offline {
    background: #dc2626;
}
