/* Filing cabinet drawer overlay */

.filing-cabinet-panel {
  width: min(960px, 96vw);
  background: #0a0a0a;
  border: 2px solid #333;
}

.cabinet-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  padding: 8px;
}

#cabinet-image {
  display: block;
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

#cabinet-hotspot-layer {
  position: absolute;
  pointer-events: none;
}

#cabinet-hotspot-layer .hotspot {
  min-width: 0;
  min-height: 0;
}

.filing-cabinet-panel .overlay-close {
  color: var(--paper);
  border-color: #666;
  background: rgba(0, 0, 0, 0.8);
}
