* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  margin: 0;
  background: var(--background-color);
}

.review-container {
  padding: 25px;
  width: auto;
}

.review-button {
  position: sticky;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%);

  font-size: 24;
  font-weight: bold;
  background-color: var(--licht-blauw);
  border: 0;
  padding: 0.5em;
  border-radius: 1em;
}

.no-reviews {
  padding: 1rem;
  color: #333;
}

.review-beheer-container {
  margin: 10px;
  width: 50%;
  flex-direction: column;
}

.beheer-container {
  padding: 25px;
  margin-top: 10px;
  border-radius: 25px;
  background-color: #ffffff5a;
  box-shadow: 0px 0px 20px #00000019;
}

@media (min-width: 1000px) {
  .review-row {
    display: flex;
    flex-direction: row;
  }

  .review-beheer-container {
    width: 100%;
  }
}