/* Review card */
.review-container {
    width: 95%;
    margin: 5px auto;
    overflow: hidden;
    position: relative;
  }
  
  /* Extended Review Card Style */
  .extended-review-card {
    display: none; /* Hide all initially */
    box-sizing: border-box;
    padding: 20px;
    background-color:  rgba(42, 42, 45, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(200, 199, 199, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  .extended-review-card img {
    max-width: 70px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .extended-review-card .review-info {
    flex: 1;
  }
  
  .extended-review-card .rating {
    color: #FFD700;
    margin-bottom: 5px;
  }
  
  .extended-review-card .review-text {
    font-size: 14px;
    line-height: 1.3;
    color: #fbf8f8;
    margin: 0;
  }

  .close-button {
    cursor: pointer;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%; /* Make it round */
    padding: 8px; /* Adjust padding for size */
    position: absolute;
    top: 10px; /* Adjust top position */
    right: 10px; /* Adjust right position */
    font-size: 16px; /* Adjust font size */
}

  .floating-div {
    position: fixed;
    bottom: 5px;
    left: 50%; /* Center horizontally */
    -webkit-transform: translateX(-50%);
    z-index: 10; /* Brings the div above other page content */
}
  /* END Card */
  