/**
 * Wishlist / copy toast (bottom-right).
 */
.vgl-popup-message {
    position: fixed;
    right: var(--vgl-space-4);
    bottom: -220px;
    z-index: 100000;
    width: min(280px, calc(100vw - 2rem));
    padding: 0 var(--vgl-space-4) var(--vgl-space-4);
    background: var(--vgl-color-surface);
    border: 1px solid var(--vgl-color-border);
    border-radius: var(--vgl-radius-lg);
    box-shadow: var(--vgl-shadow-lg);
    transition: bottom 0.45s ease-out;
}

.vgl-popup-message.active {
    bottom: var(--vgl-space-4);
}

.vgl-popup-message .vgl-popup-title {
    text-align: right;
}

.vgl-popup-message .vgl-popup-title .close {
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    padding: var(--vgl-space-2);
    border: none;
    background: transparent;
    color: var(--vgl-color-text-muted);
}

.vgl-popup-message .vgl-popup-title .close:hover {
    color: var(--vgl-color-accent);
}

.vgl-popup-message .popup-content {
    color: var(--vgl-color-text);
    font-size: var(--vgl-font-size-sm);
    line-height: 1.5;
}

.vgl-popup-message .popup-content .vgl-btn {
    display: inline-block;
    margin-top: var(--vgl-space-2);
}
