/* ==========================================================================
   MN WooEngine - Toast Notice Styles
   ========================================================================== */

.mnwe-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1d2327;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 9999999;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    white-space: nowrap;
    max-width: 90vw;
    text-align: center;
}

.mnwe-notice--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mnwe-notice--success {
    background: #00a32a;
}

.mnwe-notice--error {
    background: #d63638;
}

.mnwe-notice--warning {
    background: #dba617;
    color: #1d2327;
}

.mnwe-notice--info {
    background: #2271b1;
}
