  #carousel-container {
    width: 490px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
  }

  #carousel {
    display: flex;
    transition: transform 0.5s ease;
  }

  .carousel-item {
    height: 280px;
  }

  .carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .carousel-controls button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 40px;
    padding: 0px 20px;
  }

  .crop-img-new {
    width: 420px;
    height: 280px;
    object-fit: contain;
  }

  .thumbnails-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .thumbnail {
    flex-grow: 1;
    max-width: 90px;
    height: 50px;
    margin: 0 5px;
    cursor: pointer;
    overflow: hidden
  }

  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
  }

  .lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 10000;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .expanded-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
  }
