/* Overlay */
#iklanOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2147483647;
  display: none;
  justify-content: center;
  align-items: center;
}

/* Popup Tengah */
#iklanPopup {
  position: relative;
  background: #fff;
  border-radius: 12px;

  width: auto;
  max-width: 90vw;   /* maksimal 90% lebar layar */
  max-height: 90vh;  /* maksimal 90% tinggi layar */

  display: flex;
  justify-content: center;
  align-items: center;
}

#iklanPopup img {
  width: 100%;
  height: auto;
  max-height: 70vh;   /* batas tinggi */
}

/* Tombol Close */
#iklanClose {
  position: absolute;
  top: 8px;
  right: 8px;

  width: 28px;
  height: 28px;

  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 10;

  color: #ffffff !important; /* <-- WAJIB */
}

#iklanClose i {
  font-size: 14px;
  line-height: 1;
}

/* Hover */
#iklanClose:hover {
  background: rgba(0,0,0,0.85);
  transform: scale(1.05);
  transition: 0.2s ease;
}

/* Label Iklan */
#iklanLabel {
  position: absolute;
  top: 6px;
  left: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#iklanInfo {
  font-size: 11px;
}

/* Saat teks disembunyikan */
#iklanLabel.minimal #iklanText {
  display: none;
}

#iklanInfo i {
  font-size: 10px;
}

/* Animasi */
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Iklan Label */
#iklanPopup img {
  position: relative;
  z-index: 1;
}

#iklanLabel,
#iklanClose {
  z-index: 2;
}

#iklanLabel {
  pointer-events: none;
}

#iklanLabel * {
  pointer-events: auto;
}

.iklan-img-wrap{
  position: relative;
  display: inline-block;
}

.iklan-click-area{
  position:absolute;

/* SESUAIKAN POSISI TOMBOL */
  left:34%;
  right:34%;
  bottom:12%;
  height:6%;

  z-index:5;
  cursor:pointer;
}

/* Warna Tabel Imsakiyah */
.table-primary {
  background-color:#e7f1ff !important;
}
