#cip-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#cip-popup-content {
  position: relative;
  max-width: 100%;
  max-height: 60vh;
  align-items: center;
  display: flex;
  justify-content: center;
}
#cip-popup-image {
  display: block;
  max-width: 100%;
  max-height: 60vh;
  transition: filter 0.3s ease;
  cursor: pointer;
}
#cip-popup-image:hover {
  filter: brightness(1.3);
}
#cip-close-btn {
  position: absolute;
  top: 0;
  right: -15px;
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: black;
  cursor: pointer;
  background-color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  padding: 0;
  min-height: auto;
}
#cip-close-btn:hover {
  background-color: #f0f0f0;
}