.image-carousel {
    position: relative;
}

.carousel-images img {
    width: 100%;

}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: rgb(255, 0, 0); 
    font-weight: bold;
    font-size: 24px; 
    transition: 0.6s ease;
    background-color: rgba(211, 211, 211, 0.5); 
    border-radius: 0 5px 5px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev {
    left: 0;
}

.prev:hover, .next:hover {
    background-color: rgb(211, 211, 211); 
}

.fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(211, 211, 211); 
    
}

.fullscreen-content {
    margin: auto;
    display: block;
    width: 100%; 
    max-width: 1200px; 
    height: auto; 
}


.close {
    position: absolute;
    top: 10px;
    right: 50%;
    transform: translate(50%, 0);
    color: #fff; 
    font-size: 100px; 
    font-weight: bold;
    z-index: 10; 
    cursor: pointer;
}

.my-modal-dialog {
    margin-top: 30px; 
}

/* Mobil ve küçük cihazlar için */
@media only screen and (max-width: 768px) {
    .carousel-images img {
      width: 100%; 
      height: auto; 
      display: block; 
      max-width: 1200px; 
    }
  }
  
  /* Tablet ve orta boy cihazlar için */
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    .carousel-images img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 1200px; 
    }
  }
  
  /* Büyük ekranlar için */
  @media only screen and (min-width: 992px) {
    .carousel-images img {
      width: 100%; 
      margin: auto; 
      height: auto; 
      display: block;
    }
  }
  