/* تنسيق أساسي لمربع الحوار */
#imageDialog {
    margin: auto;
    border: none;
    border-radius: 8px;
    padding: 20px;
    min-width: 320px;
    min-height: 260px;
    max-width: 900px;
    max-height: 650px;
    background-color:  rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#imageDialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
  border: none;
  max-width: 92%;
  position: relative;
}

.modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 20px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}