/* Simple PWA Styles for Juju's Momo */
.pwa-offline-indicator {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f59e0b;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 9999;
    font-weight: bold;
}

.pwa-update-notice {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #dc2626;
    color: white;
    text-align: center;
    padding: 12px;
    z-index: 10000;
}

.pwa-update-notice button {
    background: white;
    color: #dc2626;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
}

/* Hide PWA elements when printing */
@media print {
    .pwa-offline-indicator,
    .pwa-update-notice {
        display: none !important;
    }
}