.connection-notice {
    position: fixed;
    z-index: 50000;
    right: 16px;
    bottom: 16px;
    display: flex;
    max-width: min(420px, calc(100vw - 32px));
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border: 3px solid #2d2d2d;
    background: #fff3bc;
    color: #2d2d2d;
    box-shadow: 6px 6px 0 #2d2d2d;
    font-family: "Sora", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
}

.connection-notice[hidden] {
    display: none;
}

.connection-notice--online {
    background: #dff7e4;
}

.connection-notice button {
    flex: none;
    padding: 7px 10px;
    border: 2px solid #2d2d2d;
    background: #fff;
    color: inherit;
    box-shadow: 3px 3px 0 #2d2d2d;
    font: inherit;
    cursor: pointer;
}

.connection-notice button:focus-visible {
    outline: 3px solid #b794f6;
    outline-offset: 3px;
}

@media (max-width: 575px) {
    .connection-notice {
        right: 10px;
        bottom: 10px;
        left: 10px;
        max-width: none;
    }
}
