#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    background-color: #333;
    color: #fff;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    font-size: 16px;
}

.toast.show {
    opacity: 1;
}

.toast.success {
    background-color: #4CAF50; /* Green */
}

.toast.error {
    background-color: #f44336; /* Red */
}
