:root {
  --test-color: #fdf6e6;
  --btn-color: #0077b6;
  --btn-hover-color: #0a5f8d;
}

.review-card {
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.review-user-details img.dp {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}
.review-ratings i {
  color: #ffc107;
}
.satisfactory-level {
  font-size: 1.2rem;
}
.btn-custom {
  background-color: var(--btn-color) !important;
  color: rgb(255, 255, 255) !important;
  border-radius: 30px;
  padding: 0.5rem 2rem;
}
.btn-custom:hover {
  background-color: var(--btn-hover-color) !important;
}
.review-stats {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}