﻿/* Toast Styling */
.toast {
    min-width: 400px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

/* Zentrierung optimieren */
.toast-container.top-50 {
    max-width: 90vw;
}

.toast-body {
    padding: 1.25rem;
}

.toast-header {
    font-weight: 600;
}

/* Animation von oben */
.toast.show {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Buttons zentrieren */
.toast-body .d-flex.justify-content-center {
    margin-top: 1rem;
}
