.ai-review-form {
  max-width: 620px;
  margin: 40px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.ai-review-form .field {
  margin-bottom: 15px;
}

.ai-review-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.ai-review-form label span {
  font-weight: 400;
  color: #666;
  font-size: 13px;
}

.ai-review-form input[type="text"],
.ai-review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.ai-review-form input:focus,
.ai-review-form textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.ai-review-form .rating-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.ai-review-form .rating-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  background: #f7f7f7;
  padding: 10px 12px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.ai-review-form .rating-group input {
  accent-color: #4f46e5;
}

.ai-review-form .review-primary-btn {
  width: 100%;
  padding: 14px;
  margin-top: 5px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px !important;
  cursor: pointer;
}

.ai-review-form .review-primary-btn:hover {
  opacity: 0.95;
}

.ai-review-form .result {
  margin-top: 18px;
  display:flex;
  gap:10px;
}

.ai-review-form .result textarea {
  resize: none;
  background: #fafafa;
}

.ai-review-form .ai-secondary-btn {
  padding: 10px 14px;
  border-radius: 8px !important;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  color: #888888; /* lighter gray text */
  transition: all 0.2s ease;
}

.ai-review-form .ai-secondary-btn:hover {
  background-color: #e0e0e0;
  color: #666666; /* slightly darker on hover */
}

.ai-review-form .google-btn {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  border-radius: 10px !important;
  background: #000;       /* solid black background */
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;  /* fixed typo: 'trasition' → 'transition' */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* subtle shadow for depth */
}

.ai-review-form .google-btn:hover {
  background: #222;    /* slightly lighter black on hover */
  color: #fff;         /* keep text white */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* stronger shadow on hover */
}
