/* FrontEnd CSS */
.single-epaper .slider-container {
  position: relative;
  /* width: 80%; */
  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; /* Adds rounded corners to images */
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* Adds a subtle box shadow to images */
}

/* 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
  ); /* Adds a semi-transparent background to the arrows */
  color: #fff; /* Sets the arrow color to white */
  border-radius: 50%; /* Makes the arrows round */
  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;
    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); /* Adjust as needed for your layout */
    /* margin-bottom: 20px; */
    border: 1px solid #e0e0e0;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
   /* padding: 15px;*/
}

/* 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;
}
