
.stories-container {
  max-width: 1150px;
  margin: 24px auto;
  position: relative;
}

.stories-container .previous-btn,
.stories-container .next-btn,
.stories-full-view .previous-btn,
.stories-full-view .next-btn {
  width: 30px;
  height: 30px; /* Yeni eklenen satır */
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  background: #444;
  color: #fff;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center; /* Yeni eklenen satır */
  justify-content: center; /* Yeni eklenen satır */
  cursor: pointer;
}

.stories-container .previous-btn,
.stories-container .next-btn {
  opacity: 0;
  pointer-events: none;
  transition: all 400ms ease;
}

.stories-container .previous-btn.active,
.stories-container .next-btn.active {
  opacity: 1;
  pointer-events: auto;
}

.stories-container .previous-btn,
.stories-full-view .previous-btn {
  left: 8px;
}

.stories-container .next-btn,
.stories-full-view .next-btn {
  right: 8px;
}

.stories-container .story {
  height: 150px;
  width: 100px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: auto 2px;
  pointer-events: none; /* Container alanını etkisiz kılma */
}

 .stories-container .story img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  padding: 4px;
  border: none;
  background: linear-gradient(
      180deg,
      #eb6464 0%,
      #ffa647 20%,
      #ffe83f 40%,
      #9fff5b 60%,
      #70e2ff 80%,
      #cd93ff 100%
    );
  pointer-events: auto; /* Resmi etkileşime açma */
  
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */  
}

.stories-container .stories {
  display: flex;
  gap: 8px;
}

.stories-container .content {
  overflow-x: scroll;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.stories-container .description {
  color:red;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */  
}

.stories-container .content::-webkit-scrollbar {
  display: none;
}

@media(min-width:767px) {
    .stories-container .stories {
        justify-content:center;
    }
}