/* Container */
.quote-box {
  border: 1px dashed #00b894;
  background: #f9fffc;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 18px 0;
}

/* Quote text renders HTML (italic/bold etc.) correctly via RichText.Content */
.quote-text {
  font-size: 18px;
  line-height: 1.7;
  color: #2d3436;
  margin-bottom: 12px;
}

/* Actions row */
.quote-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.quote-actions .share-label {
  font-weight: 700;
  color: #586266;
  margin-right: 4px;
}

/* Modern pill buttons with icon+text */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  color: #fff;
  line-height: 1;
}

.share-btn i { font-size: 16px; }

/* Brand colors */
.share-btn.facebook { background: #1877f2; color: #ffffff !important; }
.share-btn.whatsapp { background: #25d366; color: #0b2b1a; color: #fff; }
.share-btn.twitter  { background: #000000; color: #ffffff !important; }
.share-btn.copy-btn { background: #00b894; color: #ffffff !important; }

/* Hover / focus */
.share-btn:hover,
.share-btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  opacity: .95;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .quote-text { font-size: 16px; }
  .share-btn { padding: 7px 12px; }
}
