body {
  font-family: 'Poppins', sans-serif;
  background: #f5f6fa;
  margin: 0;
  padding: 0;
}

.review-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.review-card {
  background: #fff;
  max-width: 800px;
  width: 100%;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #e9f0ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.review-header strong {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.review-date {
  font-size: 13px;
  color: gray;
  margin: 0;
}

.review-body {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.review-footer {
  text-align: right;
}

.back-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #007bff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.back-btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card {
    padding: 15px;
  }
  .review-body {
    font-size: 15px;
  }
}
