.review-card {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  background-color: #0f9d90;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  margin-right: 10px;
}

.reviewer-info {
  display: flex;
  flex-direction: column;
}

.reviewer-name {
  font-weight: bold;
  color: #e53935;
  margin-bottom: 5px;
}

.rating {
  display: flex;
  align-items: center;
}

.star {
  color: #ffa000;
  font-size: 30px;
  margin-right: 3px;
}

.review-text {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

.review-text p {
  margin: 0;
}
