.bw-popup {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 99999;
}

.bw-popup-content {
  position: relative;
  margin-top: 40px;
  background: #fff;
  border-radius: 6px;
  padding: 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
  max-width: 80vw;
  max-height: 80vh;
}

.bw-popup-content img {
  width: 100%;
  height: auto;
  max-height: 75vh;
  border-radius: 6px;
}

#bw-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
