.app-noscript-alert {
    position: sticky;
    top: 0;
    z-index: 2000;
}

.offline-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.5s ease;
}

.offline-content {
    max-width: 600px;
    animation: offlineFadeInUp 0.5s ease-out;
}

.offline-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #feeaea;
    color: #ea5455;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 40px;
}

.is-offline {
    overflow: hidden !important;
}

@keyframes offlineFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
