/* Minimal Colorbox CSS - keine externen Bilder */
#colorbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: none;
}

#cboxWrapper {
  position: absolute;
  width: 80%;
  max-width: 1200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 4px;
}

#cboxContent {
  position: relative;
  overflow: auto;
  max-height: 80vh;
}

#cboxClose {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  background: #eee;
  border-radius: 50%;
}

#cboxClose:hover {
  background: #ccc;
}

#cboxOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 9998;
}
