/* استایل برای پنل ویرایش */
#edit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 300px; /* عرض پنل تنظیم شده */
    box-sizing: border-box;
    transition: opacity 0.3s ease; /* انیمیشن محو شدن */
}

/* نمایش پنل به صورت ظاهر شده */
#edit-popup.show {
    display: block;
    opacity: 1; /* پنل باید نمایان شود */
}

/* پوشش زمینه برای پنل */
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* کانتینر دکمه‌ها */
#edit-popup .button-container {
    display: flex;
    justify-content: center; /* وسط‌چین کردن دکمه‌ها */
    gap: 20px; /* فاصله بین دکمه‌ها */
    margin-top: 10px; /* فاصله از بالا */
}

/* دکمه‌ها */
#edit-popup button {
    padding: 8px 16px;
    border: none;
    background-color: #4CAF50;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

/* تغییر رنگ دکمه در حالت hover */
#edit-popup button:hover {
    background-color: #45a049;
}
