/* 
 * PDS Toast Notifications
 * -----------------------
 * Lightweight, temporary toast messages.
 */

.pds-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--dark, #1e293b);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    max-width: 90vw;
    text-align: center;
}

.pds-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.pds-toast.error {
    background: #dc3545;
}