/* Degraded-service banner — see js/components/service-status.js
   Fixed to the bottom rather than the top: a 503 from a background call must
   not push page content around while the user is reading or typing. */
.service-degraded-banner {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 9999;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #4a2c00;
    background: #fdf0d5;
    border-top: 2px solid #d9a441;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, .08);
}

.service-degraded-banner[hidden] { display: none; }

@media (prefers-color-scheme: dark) {
    .service-degraded-banner {
        color: #f3dfae;
        background: #2f2415;
        border-top-color: #a37a26;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .service-degraded-banner { transition: opacity .18s ease; }
}
