/* wc-dz-toast — scoped toast notification styles (D028). */

.wc-dz-toast {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 10000;
    max-width: 360px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    pointer-events: none;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wc-dz-toast--visible {
    transform: translateX(0);
}

.wc-dz-toast--error {
    background-color: #d63638;
}

.wc-dz-toast--success {
    background-color: #00a32a;
}

.wc-dz-toast--info {
    background-color: #2271b1;
}
