/* toast.css */
#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: #333;
    color: white;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.toast.mostrar {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background-color: #4caf50;
}

.toast-danger {
    background-color: #f44336;
}

.toast-info {
    background-color: #2196F3;
}
