/* کلاس رو عوض کردیم به .custom-modal */
.custom-modal {
    width: 500px;
    height: 200px;
    background-color: white;
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 12px;
    transition: all 250ms ease-in-out;
    display: none;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 🌟 برای تار کردن پس‌زمینه (بک‌دراپ) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    /* افکت تار شدن */
    z-index: 9998;
    /* پایین‌تر از مدال */
    display: none;
}

.modal-close__icon {
    left: 10px;
    top: 10px;
    position: absolute;
    border: none;
    background-color: #0056b3;
    color: white;
    height: 25px;
    width: 25px;
    border-radius: 5px;
}

.modal-title i {
    color: red;
    font-size: 20px;
}

.modal-title span {
    font-size: 20px;
}


.modal-description {}

.modal-btn {
    background-color: #0056b3;
    color: white;
    width: 100px;
    height: 30px;
    border-radius: 5px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}