/* Force pricing toggle to be visible */
.eapps-pricing-table-toggle,
.eapps-pricing-table-toggle-container {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ensure toggle text is visible */
.eapps-pricing-table-toggle-label {
  color: #fff !important;   /* change if your background is dark */
  font-weight: 600;
}

/* Ensure the switch itself is visible */
.eapps-pricing-table-toggle-switch {
  background-color: #ccc !important;
}

.eapps-pricing-table-toggle-switch:before {
  background-color: #fff !important;
}

/* Make the toggle switch area bigger */
.eapps-pricing-table-toggle-inner {
  transform: scale(1.3) !important; /* increase to taste: 1.3, 1.7, etc */
  margin-bottom: 20px !important;   /* extra spacing */
}

/* Optional: enlarge the labels/texts inside the toggle */
.eapps-pricing-table-toggle-item-name {
  font-size: 2.0em !important;
  padding: 10px 16px !important;
}

/* Make the pricing numbers visible in Elfsight Pricing Table */
.eapps-pricing-table-card .eapps-pricing-table-price {
    display: block !important;      /* Ensure the price element is shown */
    visibility: visible !important; /* Make sure it's not hidden */
    opacity: 1 !important;          /* Remove any transparency */
    color: inherit !important;      /* Use default text color */
    font-size: 1.5em !important;    /* Adjust to make price more readable */
    line-height: 1.2em !important;  /* Fix spacing if needed */
}