/* SEMrush Style Pricing Table CSS */

/* Smooth scrollbar for comparison table */
.custom-dark-scrollbar::-webkit-scrollbar {
  height: 8px;
}

.custom-dark-scrollbar::-webkit-scrollbar-track {
  background: #111827;
  border-radius: 8px;
}

.custom-dark-scrollbar::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 8px;
}

.custom-dark-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #475569;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

/* Base resets specifically for pricing wrapper */
.pricing-v2-container {
  color: #fff;
}

/* Tooltip z-index override just in case */
.z-\[99999\] {
  z-index: 99999 !important;
}
