#mcphp-staging-notice {
    position: sticky;
    z-index: 999990;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .7rem 3.5rem .7rem 1rem;
    background: #ff7a00;
    color: #241300;
    font: 700 15px/1.35 system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    text-align: center;
    box-shadow: 0 2px 10px rgb(0 0 0 / 24%);
}

#mcphp-staging-notice strong {
    letter-spacing: .04em;
}

#mcphp-staging-notice button {
    position: absolute;
    right: .8rem;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgb(36 19 0 / 45%);
    border-radius: 999px;
    background: transparent;
    color: inherit;
    font: 700 1.1rem/1 system-ui, sans-serif;
    cursor: pointer;
}

#mcphp-staging-notice button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
}

@media (max-width: 600px) {
    #mcphp-staging-notice {
        align-items: flex-start;
        padding: .65rem 3rem .65rem .75rem;
        font-size: 13px;
        text-align: left;
    }
}