/*CSS for pro plan*/

.review-container {
  max-width: 700px;
  margin: 40px auto;
  font-family: "Poppins", sans-serif;
}

.review-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 14px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  margin-left: -5px;
  margin-right: -5px;
}

.review-text {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 13px;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}

.copy-btn {
  background: linear-gradient(135deg, #555F57 , #555F57);
  padding: 8px 0;
  border-radius: 8px;
  color: white;
  font-size: 12px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  border: 1px solid;
}

.copy-btn:hover {
  background: linear-gradient(135deg, #555F57 , #555F57);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: white;
}