
.carousel-wrapper {
    width: 97%;
    margin: 0 auto;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
  }
  
  .carousel-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .carousel-image {
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    border-radius: 10px;
    transform: translateY(-50%);
    background-color: rgba(167, 167, 167, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  .carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }