/*
 * The AI launcher lives above the scroll-to-top control. Keep this small
 * compatibility layer separately versioned so browsers do not retain the
 * old mobile offset after a CSS deploy.
 */
body #scroll-top {
    bottom: calc(28px + env(safe-area-inset-bottom)) !important;
    right: 28px !important;
}

@media (max-width: 560px) {
    body #scroll-top {
        bottom: calc(16px + env(safe-area-inset-bottom)) !important;
        right: 16px !important;
    }
}
