* {
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  h1 {
    color: #333;
  }
  
  .img-comp-container {
    position: relative;
    height: 400px;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .img-comp-img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    
    .img-comp-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .img-comp-overlay {
      width: 100%; /* umjesto 50% */
      overflow: hidden;
    }
  
  .img-comp-slider {
    position: absolute;
    z-index: 9;
    cursor: ew-resize;
    width: 20px;
    height: 5%;
    background-color: rgba(0, 0, 0, 0.955);
    border-radius: 100px;
  }