#patentImage {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: calc(100vw - 40px);
  max-height: 90vh;
  cursor: pointer;
  display: none;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  background: white;
  padding: 8px;
  box-sizing: border-box;
}

@media (max-width: 576px) {
  #patentImage {
    max-width: calc(100vw - 40px);
    max-height: 75vh;
  }
}

@media (max-width: 375px) {
  #patentImage {
    max-width: calc(100vw - 40px);
    max-height: 70vh;
  }
}
