/* Toast Container */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.toast {
    /* background-color: #f13b15; */
    background-color: #00A5C8;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s, transform 0.5s;
    font-family: Arial, sans-serif;
}

/* Material Icon Styling */
.toast .material-icons {
    font-size: 24px;
    margin-right: 10px;
}

/* Toast Appearing Animation */
.toast.show {
    opacity: 1;
    transform: translateX(0);
}

/* Toast Disappearing Animation */
.toast.hide {
    opacity: 0;
    transform: translateX(100%);
}