body {
  font-family: Arial, sans-serif;
  background: #f2f2f2;
  margin: 0;
}

.magazine-container {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.magazine-card {
  width: 150px;
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background: #fff;
}

.magazine-card img {
  width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

#flipbook-container {
  width: 800px;
  height: 600px;
  background: #fff;
  margin: auto;
}

#flipbook {
  width: 100%;
  height: 100%;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}
.flipbook-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}

.flipbook-controls button,
.flipbook-controls input {
  padding: 5px 10px;
  font-size: 14px;
}
