/* Modal overlay */
#acip-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

/* Modal content */
#acip-modal {
  position: relative;
  max-width: min(92vw, 640px);
  max-height: 90vh;
  background: transparent;
  outline: none;
}

/* Scrollable variant */
#acip-modal.acip-scrollable {
  overflow: auto;
}

/* Clickable image */
#acip-modal a,
#acip-modal img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

/* Close button */
#acip-close {
  position: absolute;
  top: -10px;
  right: -10px;
  line-height: 1;
  border: none;
  background: #fff;
  color: #111;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  cursor: pointer;
  font-size: 20px;
}
#acip-close:hover { opacity: .92; }
#acip-close:focus { outline: 2px solid #2271b1; }
