#toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
}

.toast-message {
    min-width: 280px;
    max-width: 400px;
    padding: 16px 24px;
    /* افزایش padding افقی و عمودی */
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(6px);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}


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

/* رنگ‌ها برای انواع مختلف */
.toast-success {
    background-color: #2ecc71;
}

.toast-error {
    background-color: #e74c3c;
}

.toast-warning {
    background-color: #f39c12;
}

.toast-info {
    background-color: #3498db;
}

/* دکمه بستن اختیاری */
.toast-message .toast-close {
    margin-right: auto;
    cursor: pointer;
    font-size: 18px;
    opacity: 0.7;
}

.toast-message .toast-close:hover {
    opacity: 1;
}