/* Companion styling for skeleton-notice.js — see that file. */
#rr-skeleton-notice {
    position: fixed;
    left: 50%;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    transform: translate(-50%, 12px);
    z-index: 9998;
    max-width: min(92vw, 420px);
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid var(--border-2, rgba(255,255,255,0.10));
    background: var(--surface-2, #232428);
    color: var(--text-2, #b5bac1);
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}
#rr-skeleton-notice.rr-skn-on {
    opacity: 1;
    transform: translate(-50%, 0);
}
/* The bottom tab bar owns the lower edge on mobile. */
@media (max-width: 700px) {
    #rr-skeleton-notice {
        bottom: calc(var(--tab-bar-h, 64px) + var(--tab-bar-safe, 0px) + 12px);
    }
}
@media (prefers-reduced-motion: reduce) {
    #rr-skeleton-notice { transition: none; }
}
