#toastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #1a1a1a;
    color: #f1f5f9;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #a855f7; /* Sucesso/Padrão (Roxo) */
}

.toast.show {
    transform: translateX(0);
}

.toast.error { border-left-color: #ef4444; }
.toast.info { border-left-color: #3b82f6; }