:root {
  /* Font Family */
  --lc-font-family: "Inter", sans-serif;

  /* Headings */
  --lc-h1-size: 2.5rem;
  --lc-h2-size: 2rem;
  --lc-h3-size: 1.75rem;
  --lc-h4-size: 1.5rem;
  --lc-h5-size: 1.25rem;
  --lc-h6-size: 1rem;
  --lc-h1-color: #222;
  --lc-h2-color: #222;
  --lc-h3-color: #222;
  --lc-h4-color: #222;
  --lc-h5-color: #222;
  --lc-h6-color: #222;

  /* Body Text */
  --lc-body-large: 16px;
  --lc-body-medium: 14px;
  --lc-body-small: 12px;
  --lc-body-text-color: #222;

  /* Input and Label */
  --lc-input-border-color: #ccc;
  --lc-input-font-size: 1.3rem;
  --lc-input-bg-color: #fff;
  --lc-input-bg-hover-color: #fff;
  --lc-input-bg-focus-color: #fff;
  --lc-input-text-color: #555;
  --lc-input-text-hover-color: #555;
  --lc-input-text-focus-color: #555;
  --lc-slider-off: #ccc;
  --lc-slider-on: #009ef7;

  /* button colors */
  --lc-button-bg-color: #1d9bf0;
  --lc-button-bg-hover-color: #14548e;
  --lc-button-bg-focus-color: #14548e;
  --lc-button-text-color: #fff;
  --lc-button-text-hover-color: #fff;
  --lc-button-text-focus-color: #fff;

  /* radio input  */
  --lc-radio-accent-color: #0b84ff;

  /* label */
  --lc-label-font-size: 1.3rem;

  /* shadow  */
  --lc-box-shadow1: rgba(0, 0, 0, 0.1);

  /* color  */
  --lc-color1: #e53935;

  /* Error / State Variants */

  --lc-input-error-border: #e53935;
  --lc-input-error-bg: #fff5f5;

 /* Container */
  --lc-container-max-width: none;
}

/* ===============================
Typography Base Styles
=============================== */

body {
  font-family: var(--lc-font-family);
  font-size: var(--lc-body-medium);
  color: var(--lc-body-text-color);
  line-height: 1.6;
}

.lc-heading1 {
  font-size: var(--lc-h1-size) !important;
  color: var(--lc-h1-color) !important;
  font-weight: 700;
  margin-block: 3rem;
}

.lc-heading2 {
  font-size: var(--lc-h2-size) !important;
  color: var(--lc-h2-color) !important;
  font-weight: 700;
  margin-block: 2.5rem;
}

.lc-heading3 {
  font-size: var(--lc-h3-size) !important;
  color: var(--lc-h3-color) !important;
  font-weight: 600;
  margin-block: 2rem;
}

.lc-heading4 {
  font-size: var(--lc-h4-size) !important;
  color: var(--lc-h4-color) !important;
  font-weight: 600;
  margin-block: 1.5rem;
}

.lc-heading5 {
  font-size: var(--lc-h5-size) !important;
  color: var(--lc-h5-color) !important;
  font-weight: 500;
  margin-block: 1rem;
}

.lc-heading6 {
  font-size: var(--lc-h6-size) !important;
  color: var(--lc-h6-color) !important;
  font-weight: 500;
  margin-block: 0.8rem;
}

p {
  font-size: var(--lc-body-medium);
  margin-bottom: 1rem;
}

.lc-small-text {
  font-size: var(--lc-body-small);
}

.lc-medium-text {
  font-size: var(--lc-body-medium);
}

.lc-large-text {
  font-size: var(--lc-body-large);
}

.loyalty-input,
.loyalty-select,
.lc-wrapper .loyalty-input,
.lc-wrapper .loyalty-select,
.lc-modal-overlay .loyalty-input,
.lc-modal-overlay .loyalty-select {
  border: 1px solid var(--lc-input-border-color);
  background-color: var(--lc-input-bg-color);
  font-size: var(--lc-input-font-size);
  color: var(--lc-input-text-color);
  accent-color: var(--lc-radio-accent-color);
  border-radius: 6px;
}

.loyalty-label {
  font-size: var(--lc-label-font-size);
  color: #333;
}

.lc-button {
  background-color: var(--lc-button-bg-color);
  color: var(--lc-button-text-color);
  border: 1px solid var(--lc-button-bg-color);
  border-radius: 5px;
  padding: 8px 20px;
}
.lc-button:hover {
  background-color: var(--lc-button-bg-hover-color);
  color: var(--lc-button-text-hover-color);
  border: 1px solid var(--lc-button-bg-color);
}
.lc-button:focus {
  background-color: var(--lc-button-bg-focus-color);
  color: var(--lc-button-text-focus-color);
}

/* tabs  */
.lc-tab-button {
  background-color: #f9f9f9;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.1s ease,
    box-shadow 0.3s ease;
}
.lc-tab-button:hover {
  background-color: #f9f9f9;
  color: #333;
  border: 1px solid #ddd;
}

.lc-tab-button.active {
  background-color: #181c32;
  color: #fff;
}

.page-banner {
  text-align: center;
  background: var(--lc-header-bg-color);
  border-bottom: 1px solid #cc0202;
  border-radius: 5px;
  margin-bottom: 5px;
  max-width: var(--lc-container-max-width);
  margin-inline: auto;
}

.lc-banner-heading {
  color: #fff !important;
  margin: 0;
  margin-top: 25px;
  padding: 10px;
}

.lc-wrapper {
  background-color: #fff;
  color: #222;
  font-family: var(--lc-font-family);
  border-radius: 12px;
  padding: 2.5rem;
   max-width: var(--lc-container-max-width);
  margin: 0 auto; 
  margin-top: 30px;
  box-shadow: 0 4px 15px var(--lc-box-shadow1);
  width: 100%;
}

.lc-input-row {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.lc-input-group {
  display: flex;
  align-items: stretch;
  flex: 1;
  background: #f8f8f8;
}

.lc-input-group .lc-icon {
  background: #2b3990;
  color: #9fbec9;
  padding: 10px 12px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 0px;
  display: flex;
  align-items: center;
}

.lc-input-group .loyalty-input,
.lc-input-group .loyalty-select {
  border: 1px solid #cccccc;
  border-radius: 4px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 8px;
  outline: none;
  width: 100%;
  background-color: transparent;
  /* height: auto; */
}

.lc-input-group select {
  padding: 4px;
}

.lc-required {
  font-size: 14px;
  font-weight: bold;
}

.lc-required.required {
  color: red;
}

.lc-required.not-required {
  color: transparent;
}

/* Main Top Tabs */
.lc-tab-menu {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.lc-underline-tab-link {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 14px;
  cursor: pointer;
  color: #555555;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  position: relative;
}

.lc-underline-tab-link.active {
  color: #666;
}

.lc-underline-tab-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #3498db;
}

/* Inside Content Header (underline strip) */
.lc-underline-tab-inner-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.6fr;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
  color: #a6a6a6;
  font-weight: 600;
  margin-bottom: 10px;
}

.lc-no-data {
  text-align: center;
  font-size: 18px;
  padding: 20px 0;
  color: #444;
  background-color: #fff;
}

/* Hide / Show tab panes */
.lc-underline-tab-pane {
  display: none;
}
.lc-underline-tab-pane.active {
  display: block;
}

/* GRID: two inputs per row */
.lc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px; /* row gap | column gap */
  margin-bottom: 25px;
}

.lc-mb-0 {
  margin-bottom: 0 !important;
}

.lc-form-group {
  margin-bottom: 15px;
}

.input-wrapper {
  position: relative;
  width: 100%;
}

.input-wrapper i {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #888;
}

.input-wrapper .loyalty-input {
  width: 100%;
  height: 40px;
}

.lc-flex-gap {
  display: flex;
  gap: 10px;
}

.lc-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Base table styling */
.lc-striped-table {
  width: 100%;
  border-collapse: separate; /* keeps nice spacing */
  border-spacing: 0 10px; /* row gap like screenshot */
  font-family: Arial, sans-serif;
}

/* STRIPED ROWS */
.lc-striped-table tbody tr.odd td {
  background: #f9f9f9; /* light gray */
}

.lc-striped-table tbody tr.even td {
  background: #ffffff; /* pure white */
}

/* WebKit Scrollbar */
[class^="lc-"]::-webkit-scrollbar,
[class*=" lc-"]::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

[class^="lc-"]::-webkit-scrollbar-track,
[class*=" lc-"]::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

[class^="lc-"]::-webkit-scrollbar-thumb,
[class*=" lc-"]::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #dfeeff, #eff2f5);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

[class^="lc-"]::-webkit-scrollbar-thumb:hover,
[class*=" lc-"]::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #eff2f5, rgba(54, 59, 63, 1));
}

/* Firefox Scrollbar */
[class^="lc-"],
[class*=" lc-"] {
  scrollbar-width: thin;
  scrollbar-color: #eff2f5 transparent;
}

/* Prevent overlap with content on small widths */
[class^="lc-"] > *,
[class*=" lc-"] > * {
  min-width: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .lc-wrapper {
    padding: 1rem;
  }
  .lc-grid {
    grid-template-columns: 1fr;
  }
}
