#epaper-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.epaper-main-container {
    width: 100%;
    text-align: center;
    margin: 20px 0px 20px 20px;
}

.epaper-main {
    max-width: 100%;


    object-fit: contain;
}

.epaper-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.epaper-thumb {
    width: 100px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid #ddd;
    padding: 5px;
}

.epaper-thumb:hover {
    transform: scale(1.1);
    border-color: #000;
}

.img-zoom-container {
  position: relative;
  display: inline-block;
}

.zoom-lens {
  position: absolute;
  border: 2px solid #444;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  visibility: hidden;
  pointer-events: none;
  background-repeat: no-repeat;
  z-index: 999;
}
