.mag-copy-to-clipboard {
    cursor: pointer;
}

.mag-copy-to-clipboard a {
    cursor: pointer;
}

.mag-copy-to-clipboard:focus-visible {
    outline: 2px solid #c88a22;
    outline-offset: 4px;
}

.mag-copy-notification {
    position: fixed;
    left: 50%;
    bottom: 30px;
    z-index: 999999;
    min-width: 250px;
    max-width: calc(100vw - 40px);
    padding: 14px 24px;
    border-radius: 14px;
    background: #b87816;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translate(-50%, 20px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}

.mag-copy-notification.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.mag-copy-notification.is-error {
    background: #d90000;
}
