/* Modal Background Overlay */
.admodal-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6); /* dimmed background */
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.admodal-content {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

/* Ad Image */
.admodal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain; /* maintain aspect ratio */
  display: none;
  border-radius: 6px;
}

/* Close Button */
.admodal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

@media (max-width: 768px) {
  .admodal-content {
    max-width: 95vw;
    max-height: 80vh;
  }
  .admodal-image {
    max-height: 60vh;
  }
}