/* css/toast.css */

#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.toast {
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(calc(100% + 20px));
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
    min-width: 200px;
    text-align: center;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-info {
    background-color: #0d6efd; 
}

.toast-success {
    background-color: #198754;
}

.toast-error {
    background-color: #dc3545;
}
