.reviews-container {
    display:flex;
    flex-direction: row; 
    height: min-content; 
    max-height: 400px;
    width:  calc(98% - 10px);
    max-width: 1200px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    margin: 50px auto;
    --mask: linear-gradient(to left, rgba(0,0,0, 0) 0%, rgba(0,0,0, 1) 3%, rgba(0,0,0, 1) 97%, rgba(0,0,0, 0) 100%);
    -webkit-mask: var(--mask); 
    mask: var(--mask);
  }
  .reviews-container::-webkit-scrollbar {
    display: none;
  }
 

  .review-card {
    max-height: 100%;
    height: max-content;
    flex: 250px; 
    flex-shrink: 0;
    align-self: center;
    padding: 20px;
    text-overflow: ellipsis;
    overflow-y: clip;
    background-color: #f0f0f0; 
    text-align: left;
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .review-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .review-card h3{
    font-size: 16px;
    font-style: italic;
    opacity: 0.5;
  }
  .review-card h4{
    font-size: 16px;
    font-style: italic;
    opacity: 0.5;

  }
  .review-comment {
    font-size: 18px;
    font-style: italic;
    text-align: center;
    text-overflow: ellipsis;
    max-height: inherit;
    padding-bottom: 20px;
  }
  .reviews-container {
    position: relative;
    overflow: hidden;
}

.reviews-content {
    display: flex;
    overflow: hidden;
}



.scroll-buttons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scroll-left{
  filter:  sepia(16%) saturate(4303%) hue-rotate(15deg) brightness(103%) contrast(101%);
    rotate: -90deg;
      padding: 10px;
      cursor: pointer;
      outline: none;
      opacity: 0.9;
      width: 75px;
      height: auto;
      margin-left: 2%;
  
}
.scroll-right {
  filter: sepia(16%) saturate(4303%) hue-rotate(15deg) brightness(103%) contrast(101%);
  rotate: 90deg;
    padding: 10px;
    cursor: pointer;
    outline: none;
    opacity: 0.9;
    width: 75px;
    height: auto;
    margin-right: 2%;
}

.scroll-left:hover,
.scroll-right:hover {
    opacity: 1;
}


textarea, input{

  border: solid 1px #e6e6e6;
  background-color: transparent;
  border-radius: 8px;
  margin:1%;
  padding: 1%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  margin-right: 20px;
}
label{
  font-size: 18px;
  font-weight: bold;
  margin: 1%;
}