#hwp-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 220px;
    max-width: 90vw;
    background: #2f265f;
    color: #fff;
    padding: 18px 34px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
}

#hwp-toast.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(10px);
}

#hwp-toast .hwp-toast-close {
    position: absolute;
    top: 8px;
    right: 12px;
    color: #fff;
    background: none;
    border: none;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

#hwp-toast .hwp-toast-close:hover {
    opacity: 1;
} 