 
  .e42slider-container {
    display: flex;
    height: 600px; 
    margin: 0 auto;
    
  }
  
  .e42slider-image-container {
    width: 50%;
  }
  
  .e42slider-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .e42slider-content {
    width: 50%;
    padding: 30px;
    /* Kolon için padding */
    background-color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  .e42slider-content-inner {
    /* To push content to the top */
  }
  
  .e42slider-navigation {
    display: flex;
    justify-content: center;
    margin-top: auto;
    padding: 20px 0;
    /* Butonlar için üst ve alt padding */
  }
  
  .e42slider-navigation-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 10px;
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  
  .e42slider-navigation-button.e42slider-active {
    background-color: #333;
    color: white;
  }
  
  @media (max-width: 768px) {
    .e42slider-container {
      flex-direction: column;
      height: auto;
    }
  
    .e42slider-image-container {
      width: 100%;
      /* Mobil cihazlarda görsel konteyneri tam genişlik */
      height: 300px;
      /* Mobil cihazlarda görsel yüksekliğini ayarla */
    }
  
    .e42slider-content {
      width: auto;
    }
  }