/* Container */
.c2ohr-pricing-table {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Toggle Switch */
.pricing-toggle {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-toggle input[type="checkbox"] {
  display: none;
}

.toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
}

/* Plan Card */
.pricing-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  width: 300px;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.pricing-card.popular {
  border: 3px solid #1d4ed8;
  background: #f0f7ff;
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.pricing-card .price {
  font-size: 2.25rem;
  font-weight: bold;
  color: #1d4ed8;
  margin-bottom: 0.25rem;
}

.pricing-card .per-user {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.pricing-card .desc {
  font-size: 0.875rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.pricing-card ul li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.pricing-card ul li i {
  color: #10b981;
  margin-right: 0.5rem;
}

.pricing-card ul li.disabled {
  color: #9ca3af;
  text-decoration: line-through;
}

.pricing-card .btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.pricing-card .btn.primary {
  background-color: #1d4ed8;
  color: white;
}

.pricing-card .btn.outline {
  background-color: transparent;
  border: 2px solid #1d4ed8;
  color: #1d4ed8;
}

/* Popular Ribbon */
.pricing-card.popular::before {
  content: "POPULAR";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #1d4ed8;
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 0.5rem;
}
