/* Toast Container */
#mds-toast-container {
    position: fixed;
    bottom: 70px;
    right: 10px;
    z-index: 9999999999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
}

/* Individual Toast */
.mds-toast {
    display: flex;
    align-items: center;
    min-width: 250px;
    padding: 15px;
    background-color: #333;
    color: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.mds-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Icons */
.mds-toast-icon {
    margin-right: 10px;
    font-size: 20px;
}

/* Different Styles */
.mds-toast[data-type="loading"] {
    background-color: #007bff;
}
.mds-toast[data-type="saving"] {
    background-color: #ffc107;
}
.mds-toast[data-type="updating"] {
    background-color: #17a2b8;
}
.mds-toast[data-type="completed"] {
    background-color: #28a745;
}
.mds-toast[data-type="error"] {
    background-color: #990f1c;
}

div#mds-toast-container {
    font-size: 15px;
}

.mds-toast-title {
    font-size: 18px;
    font-weight:600;
}