.npn-stories {
        display: flex;
        gap: 12px;
        flex-wrap: nowrap;
        justify-content: center;
        direction: ltr;
        margin: 10px 0;
    }
    .npn-story-item {
        cursor: pointer;
        text-align: center;
        width: 80px;
        user-select: none;
    }
    .npn-story-thumb img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 50%;
        border: 2px solid #ddd;
        transition: border-color 0.3s ease;
    }
    .npn-story-item:hover .npn-story-thumb img {
        border-color: #e62e2e; /* رنگ قرمز هنگام هاور */
    }
    .npn-story-title {
        margin-top: 6px;
        font-size: 13px;
        color: #444;
        text-overflow: ellipsis;
        text-align: center;
    }
#npn-story-media {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#npn-story-container {
  overflow: visible !important;
}

    /* دکمه‌های فلش */
    .arrow-btn {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.15);
        border-radius: 50%;
        transition: background 0.3s ease;
        border: none;
    }
    .arrow-btn:hover {
        background: rgba(255,255,255,0.35);
    }
    .left-arrow {
        position: relative;
    }
    .left-arrow::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 55%;
        transform: translate(-50%, -50%);
        border-style: solid;
        border-width: 8px 12px 8px 0;
        border-color: transparent white transparent transparent;
    }
    .right-arrow {
        position: relative;
    }
    .right-arrow::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 45%;
        transform: translate(-50%, -50%);
        border-style: solid;
        border-width: 8px 0 8px 12px;
        border-color: transparent transparent transparent white;
    }
    .npn-story-thumb img {
    width: 80px;
    height: 80px !important;
    object-fit: cover;
    border-radius: 50% !important;
    border: 3px solid #e62e2e !important;
    transition: border-color 0.3s ease;
  }

@media screen and (max-width: 767px) {
    #npn-story-next {
        left: calc(50% + 140px) !important;
    }
    #npn-story-prev {
        left: calc(50% - 170px) !important;
    }
}


/**/
.owl-prev-arrow, .owl-next-arrow {
  font-size: 30px;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.owl-prev-arrow:hover, .owl-next-arrow:hover {
  color: #000;
}

.owl-prev, .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  padding: 5px 10px;
  border-radius: 50%;
  z-index: 1000;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 10px;
}

.owl-prev:hover, .owl-next:hover {
  background: rgba(255,255,255,1);
  color: #000 !important;
}
