.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-54244 .elementor-element.elementor-element-37b09f5{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-621bf4a *//* --- TABLE WRAPPER --- */

.plan-matrix-wrapper {
  width: 100%;
  overflow-x: auto; /* horizontal scroll only when needed */
}

/* Hide table + buttons by default, JS will reveal them */
.plan-matrix-wrapper {
  width: 100%;
  overflow-x: auto;
  display: none;
}

.sender-id-toggle {
  text-align: center;
  margin-top: 1rem;
  display: none;
}

.sender-id-collapse-floating {
  position: fixed;
  right: 1.5rem;
  bottom: 160px;
  z-index: 50;
  display: none;
}

/* --- TABLE BASE STYLES --- */

.plan-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  table-layout: fixed; /* equalizes columns */
}

.plan-matrix thead {
  background: #f6f5ff;
}

.plan-matrix th,
.plan-matrix td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #ececf5;
  text-align: center;
}

/* Sticky header */

.plan-matrix thead th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #f6f5ff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

/* Header styling */

.plan-matrix th {
  font-weight: 600;
  color: #3a3a48;
}

.plan-matrix th:not(:first-child) {
  color: #785afb;
}

/* Zebra rows */

.plan-matrix tbody tr:nth-child(even) {
  background: #fafafa;
}

/* --- COLUMN WIDTHS --- */

/* 1: Country column */
.plan-matrix th:first-child,
.plan-matrix td:first-child {
  width: 28%;
  text-align: left;
  white-space: normal;
}

/* 2: Alphanumeric sender ID */
.plan-matrix th:nth-child(2),
.plan-matrix td:nth-child(2) {
  width: 15%;
  text-align: center;
}

/* 3: Sender ID autoreplaced */
.plan-matrix th:nth-child(3),
.plan-matrix td:nth-child(3) {
  width: 15%;
  text-align: center;
}

/* 4: SMS supported */
.plan-matrix th:nth-child(4),
.plan-matrix td:nth-child(4) {
  width: 10%;
  text-align: center;
}

/* 5: Notes */
.plan-matrix th:nth-child(5),
.plan-matrix td:nth-child(5) {
  width: 32%;
  text-align: center;
}

/* Country / feature label */

.plan-matrix .feature-name {
  font-weight: 500;
  color: #222230;
}

/* --- ICONS --- */

.icon-mark {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.icon-yes {
  background-image: url('https://wpamelia.com/wp-content/uploads/2025/12/icon-check.svg');
}

.icon-no {
  background-image: url('https://wpamelia.com/wp-content/uploads/2025/12/icon-x.svg');
}

/* --- SEARCH STYLING --- */

.sender-id-table-wrapper {
  width: 100%;
}

/* Container for label + input */
.sender-id-search {
  display: flex;
  align-items: center;
  justify-content: center;   /* center horizontally */
  gap: 0.5rem;
  margin: 4rem auto 1.5rem;  /* pushes it down a bit */
  width: 100%;
}

/* Label */

.sender-id-search label {
  font-size: 16px;
  color: #4a4a5c;
}

/* Input */

#sender-id-search-input {
  min-width: 260px;
  max-width: 360px;
  width: 100%;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d4d4f2;
  font-size: 0.95rem;
  color: #222230;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

#sender-id-search-input::placeholder {
  color: #a0a0ba;
}

#sender-id-search-input:focus {
  border-color: #785afb;
  box-shadow: 0 0 0 1px rgba(120, 90, 251, 0.15);
  background: #faf9ff;
}

/* --- SHOW ALL / FEWER BUTTON (static, only when collapsed) --- */

.sender-id-toggle {
  text-align: center;
  margin-top: 1rem;
}

#sender-id-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #785afb;
  background: #ffffff;
  color: #785afb;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

#sender-id-toggle-btn:hover {
  background: #785afb;
  color: #ffffff;
  border-color: #6a4be6;
  box-shadow: 0 3px 8px rgba(120, 90, 251, 0.25);
}

#sender-id-toggle-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* --- FLOATING COLLAPSE BUTTON (shown when expanded) --- */

.sender-id-collapse-floating {
  position: fixed;
  right: 1.5rem;
  bottom: 160px; /* adjust up/down if you want */
  z-index: 50;
  display: none;
}

/* Always-purple floating pill */

#sender-id-collapse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.8rem;
  border-radius: 999px;
  border: 1px solid #785afb;
  background: #785afb;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(120, 90, 251, 0.35);
  transition: background-color 0.15s ease, color 0.15s ease,
              box-shadow 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

#sender-id-collapse-btn:hover {
  background: #6a4be6;
  border-color: #6a4be6;
  box-shadow: 0 5px 14px rgba(106, 75, 230, 0.45);
}

#sender-id-collapse-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}/* End custom CSS */