/* FrontEnd CSS */
.single-epaper .slider-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border: solid 1px #ccc;
  border-radius: 10px;
}

.single-epaper .image-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.single-epaper .image-slide {
  flex: 0 0 100%;
}

/* Apply modern CSS to images */
.single-epaper .image-slide img {
  width: 100%;
  height: auto;
  border-radius: 5px; 
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Style the arrow buttons */
.single-epaper .arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  cursor: pointer !important;
  user-select: none;
  z-index: 1;
  background-color: hsla(
    240,
    7%,
    62%,
    1
  ); 
  color: #fff; 
  border-radius: 50%; 
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-epaper .arrow:hover {
  background-color: hsl(0deg 0% 3.2%);
}

.single-epaper .left-arrow {
  left: 10px;
}

.single-epaper .right-arrow {
  right: 10px;
}

/* epaper top header */
.epaper-top-header .epaper-row {
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 10px;  
}
.epaper-top-header .epaper-col {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

/* Epaper listing page  */
/* Styles for the epaper-listing section */
.epaper-listing {
    display: flex;
    flex-wrap: wrap;
   /* justify-content: space-between;*/
	gap: 20px;
}

/* Styles for each epaper-item */
.epaper-item {
    width: calc(33% - 10px);
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* Styles for epaper-thumbnail */
.epaper-thumbnail {
    width: 100%;
}

.epaper-thumbnail img {
    max-width: 100%;
    height: auto;
}

/* Styles for epaper-content */
.epaper-content, .epaper-top-header {
    padding: 10px;
}

/* Styles for the title */
.epaper-content h2 {
    font-size: 24px;
    margin: 5px 0 0 0;
	text-align: center;
}
.epaper-content h2 a {
    text-decoration: none;
}

.zoom-container {
  overflow: auto;
  width: 100%;
  height: 100%;
}

.zoom-container img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.dragging {
  cursor: grabbing !important;
}

/* Zoom & Download Button Group Styling */
.epaper-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}

.epaper-center .sk-control-button {
    background-color: #fff;
    border: none;
    color: #000;
    padding: 7px 8px;
    margin: 0 5px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.epaper-center .sk-control-button i {
    font-size: 18px;
    pointer-events: none;
}

.epaper-center .sk-control-button:hover {
    opacity: 0.8
}
