/* Edition Badge and Coming Tag Fixes */

/* Fix Professional edition badge color - make it more distinct from coming tags */
.edition-badge.pro {
  background: linear-gradient(135deg, #059669, #047857); /* Green gradient instead of yellow */
  color: #fff;
}

/* Improve Community edition badge - make it more appealing */
.edition-badge.ce {
  background: linear-gradient(135deg, #6366f1, #4f46e5); /* Purple gradient instead of gray */
  color: #fff;
}

/* Style for "Coming" timeline tags */
.coming-tag {
  background: var(--sting-yellow); 
  color: #000; 
  padding: 4px 12px; 
  border-radius: 6px; 
  font-weight: 600; 
  font-size: 12px; 
  display: inline-block; 
  margin-bottom: 8px;
  text-align: center;
  min-width: 120px; /* Ensure consistent width for alignment */
}

/* Ensure all coming tags have consistent alignment */
.pricing-card .coming-tag {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  width: fit-content;
}

/* Alternative Professional color option (orange) */
.edition-badge.pro.alt-orange {
  background: linear-gradient(135deg, #ea580c, #dc2626);
  color: #fff;
}

/* Alternative Community color option (teal) */
.edition-badge.ce.alt-teal {
  background: linear-gradient(135deg, #0d9488, #0f766e);
  color: #fff;
}