/* Toast Container */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 400px;
}

.toast {
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideDown 0.5s ease forwards;
}

/* Farben für die Typen */
.toast.info { background-color: #27ae60; }    /* Grün */
.toast.warning { background-color: #f1c40f; color: #333; } /* Gelb */
.toast.error { background-color: #e74c3c; }   /* Rot */

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.toast.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease;
}