.mwcps-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.mwcps-toast {
    pointer-events: auto;
    min-width: 300px;
    max-width: 450px;
    background: #ffffff;
    color: #1f2937;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
    border-left: 4px solid #3b82f6;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    opacity: 0;
}

.mwcps-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.mwcps-toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.mwcps-toast-success {
    border-left-color: #10b981;
}
.mwcps-toast-success .mwcps-toast-icon {
    background: #ecfdf5;
    color: #059669;
}

.mwcps-toast-error {
    border-left-color: #ef4444;
}
.mwcps-toast-error .mwcps-toast-icon {
    background: #fef2f2;
    color: #dc2626;
}

.mwcps-toast-message {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.mwcps-toast-close {
    margin-left: auto;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    font-size: 16px;
    line-height: 1;
    transition: color 0.2s ease;
}

.mwcps-toast-close:hover {
    color: #4b5563;
}

@keyframes mwcps-toast-in {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
