/* .toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    max-width: 90%;
    padding: 12px 16px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    color: white;
    font-size: 14px;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0;
} */

.toast {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* min-width: 250px; */
    /* max-width: 90%; */
    padding: 12px 16px;
    /* border-radius: 4px; */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    color: white;
    /* font-size: 14px; */
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 0;
    width: 100%;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.toast-message {
    margin-right: 20px;
}

.toast-close {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    outline: none;
    padding: 0;
    margin-left: 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.toast-close:hover {
    opacity: 1;
}

/* Toast Types */
.toast.success {
    background-color: #4caf50;
}

.toast.error {
    background-color: #f44336;
}

.toast.warning {
    background-color: #ff9800;
}

.toast.info {
    background-color: #323232;
}