/* Admin FrontEnd CSS */

/* ePaper Images Admin */
.sk-epaper-image-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sk-epaper-image-list li {
  position: relative;
  flex: 1 1 calc(33.33% - 10px);
  max-width: calc(33.33% - 10px);
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.sk-epaper-image-list img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.sk-epaper-image-list img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.sk-epaper-image-list .remove-image {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  background: #000000d4;
  color: #fff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font-size: 20px;
  text-align: center;
  line-height: 21px;
  pointer-events: auto;
}

.sk-epaper-image-list .remove-image::after {
  content: "\00d7"; 
}

.sk-epaper-image-list .remove-image:hover {
  background: #000;
}

.text-remove-btn {
  display: none;
}

@media (max-width: 768px) {
  .sk-epaper-image-list li {
    flex: 1 1 100%;
  }
}
/* ePaper Images Admin End */
