/* Positioniere den Toast unten rechts */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column-reverse;
}

.toast {
    min-width: 250px;
    background-color: white;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    position: relative;
    margin-top: 10px;
    transition: transform 0.3s ease-out;
}

.toast-success .toast-header {
    background-color: #198754;
    color: white;
}

.toast-error .toast-header {
    background-color: #dc3545;
    color: white;
}

.toast-success .toast-header small,
.toast-error .toast-header small {
    color: rgba(255, 255, 255, 0.8);
}
