#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 250px;
    max-width: 350px;
    padding: 12px 16px;
    border-radius: 10px;
    color: white;
    
    opacity: 0;
    transform: translateY(-20px);
    
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

    font-family: "Maven Pro";
    letter-spacing: 0.5px;
    line-height: 1.1;
    font-size: 12px;
    font-weight: 800;
}

/* sichtbar */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* verschwinden */
.toast.hide {
    opacity: 0;
    transform: translateY(-10px);
}

/* Varianten */
.toast.success {
    background: #2ecc71;
}

.toast.error {
    background: #e74c3c;
}

.toast.info {
    background: #3498db;
}