/*-------------Needed CSS-------------*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.review-stream-container {
  text-align: center;
  max-width: 510px;
  margin: 1.5rem auto;
}
.review-stream-container p {
  margin: 0;
}
.company-name {
  font-weight: bold;
  margin-top: 1rem !important;
}

.review-item {
  border: 1px solid hsl(0, 0%, 80%);
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 1rem;
}

.review-item-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.review-item-date {
  margin-top: 0.5rem !important;
}

.review-item-content {
  font-style: italic;
}

.star-container {
  display: flex;
  justify-content: center;
  gap: 0.1rem;
}

.star-icon {
  fill: #ffb700;
}
