@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   LeafyWings Medix — Compare Plans Page Styles
   Migrated from inline <style> in compare-plans.blade.php
   ═══════════════════════════════════════════════════════════════ */
.cc-compare-header {
  background: var(--cc-bg);
}

.cc-compare-hero-text {
  text-align: center;
  padding: 60px 0 20px;
}

.cc-compare-pricing-controls {
  justify-content: center;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.cc-compare-user-slider {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--cc-border);
}

.cc-compare-slider-label {
  font-weight: 600;
  color: var(--cc-text-secondary);
}

.cc-compare-slider-value {
  font-weight: 700;
  color: var(--cc-primary);
  min-width: 20px;
}

.cc-compare-range-input {
  width: 150px;
}

.cc-compare-number-input {
  width: 60px;
  padding: 4px 8px;
  border: 1px solid var(--cc-border);
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
}

.cc-compare-faq {
  background: #fff;
  padding: 60px 0;
}

.cc-compare-faq-header {
  text-align: center;
}

.cc-compare-faq-grid {
  margin-top: 40px;
}

/* Table Section */
.cc-compare-table-section {
  padding: 0 0 80px;
  background: var(--cc-surface);
}

.cc-compare-table-wrapper {
  overflow: clip;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--cc-border);
}

.cc-compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

/* Sticky Header */
.cc-compare-table thead th {
  position: sticky;
  top: 80px;
  background: #fff;
  z-index: 20;
  padding: 24px 16px;
  border-bottom: 2px solid var(--cc-border);
  vertical-align: top;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.plan-header {
  text-align: center;
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--cc-text-primary);
}

.plan-price-wrapper {
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cc-text-primary);
  line-height: 1;
}
.plan-price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cc-text-muted);
}

.plan-per-dr {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cc-primary);
  margin-top: 4px;
}

.plan-users {
  font-size: 0.8rem;
  color: var(--cc-text-muted);
  margin-bottom: 16px;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  padding: 8px 12px;
}

/* Sticky Group Headers */
.group-header td {
  position: sticky;
  top: 316px;
  z-index: 15;
  background: var(--cc-surface-alt);
  font-weight: 700;
  color: var(--cc-primary);
  padding: 16px 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--cc-border);
  border-top: 1px solid var(--cc-border);
}

/* Feature Rows */
.cc-compare-table tbody tr:not(.group-header) {
  border-bottom: 1px solid var(--cc-border);
}
.cc-compare-table tbody tr:not(.group-header):hover {
  background: rgba(var(--cc-primary-rgb), 0.02);
}

.cc-compare-table td {
  padding: 14px 16px;
  vertical-align: middle;
}

.feature-col {
  width: 300px;
  font-weight: 500;
  color: var(--cc-text-primary);
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--cc-border);
  background: #fff;
}

.plan-col {
  width: 18%;
  text-align: center;
  color: var(--cc-text-secondary);
}

/* Status Circles */
.cc-status-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}
.cc-status-circle.check {
  background: var(--cc-secondary);
  color: #fff;
}
.cc-status-circle.cross {
  background: #ea5455;
  color: #fff;
  font-size: 0.75rem;
}

.feature-value {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--cc-text-primary);
}

.feature-name-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-name {
  font-size: 0.95rem;
  color: var(--cc-text-primary);
  font-weight: 500;
}

.feature-info {
  color: var(--cc-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.feature-col:hover .feature-info {
  color: var(--cc-primary);
}

/* Tooltip */
.cc-tooltip-container {
  position: relative;
  display: flex;
  align-items: center;
}

.cc-tooltip-content {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  width: 260px;
  padding: 12px 16px;
  background: rgba(30, 41, 59, 0.98);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  border-radius: 8px;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  white-space: normal;
}
.cc-tooltip-content::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid rgba(30, 41, 59, 0.98);
}

.cc-tooltip-container:hover .cc-tooltip-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

/* Billing Toggle Compare */
.cc-billing-toggle-compare {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--cc-border);
  font-weight: 600;
}
.cc-billing-toggle-compare span {
  color: var(--cc-text-secondary);
  transition: all 0.3s ease;
}
.cc-billing-toggle-compare span.active {
  color: var(--cc-text-primary);
}

/*# sourceMappingURL=compare-plans.css.map */
