@charset "UTF-8";
#flipbook-wrapper {
  width: 100%;
  margin: 20px auto;
  position: relative;
  z-index: 10;
  /* Alaphelyzetben van transition a sima zoom-hoz */
  transition: transform 0.3s ease;
  touch-action: none;
}

/* Ez az osztály aktív, amikor a Draggabilly húzza az elemet */
#flipbook-wrapper.is-dragging {
  /* Húzás közben TILTJUK a transition-t, hogy kövesse az egeret azonnal */
  /* transition: none !important;
  opacity: 0.5 !important; */
  z-index: 1000;
}

.is-zoomed {
  transform: scale(2) !important;
  cursor: grab;
}

#flipbook {
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease-in-out;
  /* Az eltolás simításához */
  background: white;
}

.controls {
  margin-top: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  position: sticky;
  bottom: 20px;
  z-index: 100;
}

.btn {
  padding: 6px 9px;
  font-size: 14px;
  cursor: pointer;
  background: #eee;
  border: none;
  border-radius: 0;
  margin: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn:hover {
  background: #fff;
}

.btn-zoom {
  background: #ffc107;
}

#loader {
  color: white;
  margin-bottom: 10px;
  font-weight: bold;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 600px) {
  #flipbook-wrapper {
    width: 100%;
  }
  .btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}/*# sourceMappingURL=flipbook.css.map */