.profile-section {
  border-radius: 14px;
  border: 1px solid #e3e8f0;
  overflow: hidden;
  background: #ffffff;
}

.section-title {
  font-weight: 700;
  font-size: 1.25rem;
}

/* Your brand button (same as we used earlier) */
.btn-brand {
  background-color: #20376C;
  border-color: #20376C;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
}

  .btn-brand:hover {
    background-color: #08171F;
    border-color: #08171F;
    color: #ffffff;
  }

/* BRIGHT BLUE BUTTON */
.btn-discord {
  background-color: #3B82F6 !important;
  /* Bright Blue */
  border-color: #3B82F6 !important;
  color: #ffffff !important;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 18px;
  transition: all 0.2s ease-in-out;
}

  /* HOVER: Gray Button + White Text */
  .btn-discord:hover {
    background-color: #063763 !important;
    /* Gray */
    border-color: #063763 !important;
    color: #ffffff !important;
  }

.sidebar-wrapper.sidebar-dark {
  background-color: #063763 !important;
}

.download-btn {
  background: #20376C;
  border-color: #20376C;
  color: #ffffff;
}

  .download-btn:hover {
    background: #08171F;
    border-color: #08171F;
    color: #ffffff;
  }

.trading-summary {
  border-radius: 10px;
}

.broker-card {
  border-radius: 10px;
}

  .broker-card .btn {
    background-color: #f8fafc;
    border-color: #e1e5ee;
    font-size: 0.875rem;
  }

    .broker-card .btn:hover {
      background-color: #e9edf7;
    }

  .broker-card img {
    max-width: 38px;
    max-height: 38px;
    object-fit: contain;
  }

.trading-summary img {
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}


/* PRIMARY BRAND LINK BUTTON */
.btn-brand {
  background-color: #20376C !important;
  border: 1px solid #20376C !important;
  color: #ffffff !important;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease;
}

  .btn-brand:hover,
  .btn-brand:focus,
  .btn-brand:active {
    background-color: #08171F !important;
    border-color: #08171F !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

/* OUTLINE BRAND LINK BUTTON */
.btn-brand-outline {
  background-color: #ffffff !important;
  border: 1px solid #20376C !important;
  color: #20376C !important;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease;
}

  .btn-brand-outline:hover,
  .btn-brand-outline:focus,
  .btn-brand-outline:active {
    background-color: #20376C !important;
    border-color: #20376C !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

/* FULL WIDTH BROKER ACTION LINKS */
.btn-broker-action {
  width: 100%;
  padding: 10px 14px;
  text-align: left;
  display: block;
}

.broker-linked-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #E9F9EE;
  color: #198754;
  border: 2px solid #198754;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 8px;
  text-transform: uppercase;
}
/* Card shell */
.settings-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  background-color: #ffffff;
  border: 1px solid #e3e8f0;
}

/* Header strip (green like your screenshot – adjust if needed) */
.settings-card-header {
  background: #198754; /* Bootstrap success green or your custom green */
  padding: 0.75rem 1rem;
}

/* Card body */
.settings-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

/* Brand blue button (bright) */
.btn-brand-blue {
  background-color: #3B82F6;
  border-color: #3B82F6;
  color: #ffffff;
  font-weight: 600;
}

  .btn-brand-blue:hover {
    background-color: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
  }

/* Table tweaks */
.settings-card table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  border-bottom-width: 1px;
}

.settings-card table tbody td {
  font-size: 0.86rem;
}

.settings-card table a {
  color: #2563EB;
  text-decoration: none;
}

  .settings-card table a:hover {
    text-decoration: underline;
  }


/* Brand palette (from your color screenshot) */
:root {
  --brand-dark: #08171F;
  --brand-navy: #20376C;
  --brand-blue: #5D80B5;
  --brand-light: #C6E6F9;
  --brand-lightest: #E4F9F8;
}

/* Card shell */
.settings-card {
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #e4edf6;
  box-shadow: 0 8px 24px rgba(8, 23, 31, 0.08);
  overflow: visible; /* ✅ IMPORTANT FIX */
}


/* Card header strip in brand navy */
.settings-card-header {
  background: var(--brand-navy);
  padding: 0.75rem 1.25rem;
}

/* Card body */
.settings-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

/* Lighter background for the "No Additional Email" row */
.bg-brand-lightest {
  background-color: var(--brand-lightest);
}

/* Table styling */
.settings-card table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  border-bottom-width: 1px;
}

.settings table tbody td {
  font-size: 0.86rem;
}

.settings-card table a {
  color: var(--brand-navy);
  text-decoration: none;
}

  .settings-card table a:hover {
    text-decoration: underline;
  }

/* Brand primary button (Add Email, etc.) */
.btn-brand-primary {
  background-color: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}

  .btn-brand-primary:hover {
    background-color: var(--brand-navy);
    border-color: var(--brand-navy);
    color: #ffffff;
  }

/* Remove MFA button - bold, but still on brand */
.btn-mfa-remove {
  background-color: #e53935; /* strong danger red */
  border-color: #e53935;
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.65rem 1rem;
}

  .btn-mfa-remove:hover {
    background-color: #c62828;
    border-color: #c62828;
    color: #ffffff;
  }

:root {
  --brand-dark: #08171F;
  --brand-navy: #20376C;
  --brand-blue: #5D80B5;
  --brand-light: #C6E6F9;
  --brand-lightest: #E4F9F8;
}

/* Billing toggle ----------------------------------------------------- */
.billing-toggle {
  background: #f3f4f6;
  border-radius: 999px;
  padding: 2px;
  display: inline-flex;
  gap: 2px;
}

.billing-pill {
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.15s ease;
}

.billing-pill-active {
  background: var(--brand-navy);
  color: #ffffff;
}

/* Plan cards --------------------------------------------------------- */
.plan-card {
  border-radius: 14px;
  border: 1px solid #e4edf6;
  background: #ffffff;
  box-shadow: 0 10px 32px rgba(8, 23, 31, 0.06);
  padding: 1rem 1.1rem 1.1rem;
  position: relative;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

  .plan-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(8, 23, 31, 0.12);
  }

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 0.9rem;
}

.plan-amount {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.plan-period {
  font-size: 0.8rem;
  color: #6b7280;
  margin-left: 2px;
}

.plan-features {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.8rem;
  color: #4b5563;
}

  .plan-features li + li {
    margin-top: 0.25rem;
  }

/* “Current plan” badge (circle + text) ------------------------------- */
.plan-current-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e8f7ec;
  border: 1px solid #22c55e;
  color: #166534;
  border-radius: 999px;
  padding: 2px 9px 2px 5px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.check-circle {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.8rem;
}

/* Brand buttons ------------------------------------------------------ */
.btn-brand-primary {
  background-color: var(--brand-navy);
  border-color: var(--brand-navy);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.85rem;
}

  .btn-brand-primary:hover:enabled {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
  }

.btn-outline-brand {
  border-color: var(--brand-blue);
  color: var(--brand-navy);
  font-weight: 600;
  border-radius: 999px;
  font-size: 0.85rem;
}

  .btn-outline-brand:hover {
    background-color: var(--brand-blue);
    color: #ffffff;
  }

/* Perk card ---------------------------------------------------------- */
:root {
  --brand-dark: #08171F;
  --brand-navy: #20376C;
  --brand-blue: #5D80B5;
  --brand-light: #C6E6F9;
  --brand-lightest: #E4F9F8;
  --brand-accent: #38bdf8; /* bright accent blue */
}

/* PERK BANNER -------------------------------------------------------- */

.perk-section {
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  background: radial-gradient(circle at top left, rgba(93,128,181,0.35), transparent 55%), linear-gradient(120deg, var(--brand-navy), #1e3a8a);
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(8, 23, 31, 0.35);
  position: relative;
  overflow: hidden;
}

  /* subtle glow at bottom */
  .perk-section::after {
    content: "";
    position: absolute;
    inset: auto 15% -30px 15%;
    height: 40px;
    background: radial-gradient(circle, rgba(8,23,31,0.4), transparent 70%);
    opacity: 0.8;
    pointer-events: none;
  }

/* LEFT SIDE TEXT */
.perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fefefe;
  flex-shrink: 0;
}

.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.6);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #e0f2f1;
}

  .perk-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
  }

.perk-title {
  font-size: 0.95rem;
  color: #e5f0ff;
}

.perk-text {
  font-size: 0.8rem;
  color: #d1e5ff;
}

/* RIGHT SIDE CREDIT CARD */
.perk-credit-card {
  border-radius: 18px;
  background: #ffffff;
  padding: 1.4rem 1.2rem 1.3rem;
  box-shadow: 0 14px 38px rgba(8, 23, 31, 0.25);
  position: relative;
  overflow: hidden;
}

  .perk-credit-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(93, 128, 181, 0.15), transparent 60%);
    opacity: 0.9;
    pointer-events: none;
  }

.perk-credit-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(34, 197, 94, 0.5);
}

.perk-value {
  color: var(--brand-navy);
}

.perk-amount {
  font-size: 2rem;
  font-weight: 800;
}

.perk-period {
  font-size: 0.9rem;
  margin-left: 4px;
}

.perk-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
}


.perk-value {
  color: var(--brand-navy);
}

.perk-amount {
  font-size: 2rem;
  font-weight: 800;
}

.perk-period {
  font-size: 0.9rem;
  margin-left: 4px;
}

.perk-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563eb;
}

.plan-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff7b2c;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-bottom-left-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.credit-applied-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: #f8fafc;
  border-radius: 18px;
  margin-top: 30px;
}

.credit-card {
  background: linear-gradient(180deg, #f2f7ff 0%, #ffffff 40%);
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  padding: 28px 24px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(32, 55, 108, 0.12);
  border: 1px solid #e6edff;
}

.credit-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  border-radius: 999px;
  background: #e9f8ef;
  color: #2f9e5b;
  margin-bottom: 14px;
}

.credit-title {
  font-weight: 600;
  color: #6c7da6;
  font-size: 15px;
  margin-bottom: 18px;
}

.credit-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  color: #3f6fff;
}

  .credit-price .price-main {
    font-size: 58px;
    font-weight: 800;
    line-height: 1;
  }

  .credit-price .price-meta {
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding-top: 6px;
  }

.credit-provider {
  font-size: 14px;
  color: #8a94b8;
  margin-top: 4px;
  margin-bottom: 12px;
}

.credit-logo img {
  height: 28px;
  object-fit: contain;
}



:root {
  --brand-dark: #08171F;
  --brand-navy: #20376C;
  --brand-blue: #5D80B5;
  --brand-accent: #2F6BFF;
}

/* MAIN BANNER ----------------------------------------------------- */

.perk-section {
  border-radius: 24px;
  padding: 24px 28px;
  background: radial-gradient(circle at top left, rgba(93,128,181,0.42), transparent 55%), linear-gradient(120deg, var(--brand-navy), #1f3f8c);
  color: #f9fafb;
  box-shadow: 0 18px 40px rgba(8, 23, 31, 0.35);
  position: relative;
  overflow: hidden;
}

  /* soft bottom glow */
  .perk-section::after {
    content: "";
    position: absolute;
    inset: auto 15% -30px 15%;
    height: 40px;
    background: radial-gradient(circle, rgba(8,23,31,0.4), transparent 70%);
    opacity: 0.7;
    pointer-events: none;
  }

/* LEFT SIDE TEXT -------------------------------------------------- */

.perk-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fefefe;
  flex-shrink: 0;
}

.perk-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.14);
  border: 1px solid rgba(45, 212, 191, 0.6);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e0f2f1;
}

  .perk-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
  }

.perk-title {
  font-size: 0.95rem;
  color: #e5f0ff;
}

.perk-text {
  font-size: 0.8rem;
  color: #d1e5ff;
}

/* RIGHT SIDE – OUTER CARD SHELL ---------------------------------- */

.perk-credit-outer {
  background: linear-gradient(180deg, #f3f7ff 0%, #eef3ff 100%);
  padding: 18px;
  border-radius: 22px;
  box-shadow: 0 22px 38px rgba(8, 23, 31, 0.45);
}

/* INNER CREDIT CARD (matches screenshot) ------------------------- */

.credit-card {
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 45%);
  border-radius: 18px;
  padding: 24px 28px 28px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(32, 55, 108, 0.16);
  border: 1px solid #e6edff;
}

/* badge */

.credit-badge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  border-radius: 999px;
  background: #e9f8ef;
  color: #2f9e5b;
  margin-bottom: 10px;
}

/* title */

.credit-title {
  font-weight: 600;
  color: #6c7da6;
  font-size: 14px;
  margin-bottom: 16px;
}

/* price */

.credit-price {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brand-accent);
}

  .credit-price .price-main {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
  }

  .credit-price .price-meta {
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    padding-top: 6px;
  }

/* provider + logo */

.credit-provider {
  font-size: 13px;
  color: #8a94b8;
  margin-top: 4px;
  margin-bottom: 12px;
}

.credit-logo img {
  height: 28px;
  object-fit: contain;
}


.price-row {
  display: flex;
  align-items: flex-start; /* aligns $99 with the text block */
  justify-content: center;
  gap: 8px;
}

.price-main {
  font-size: 64px;
  font-weight: 800;
  color: #3b82f6; /* bright blue */
  line-height: 1;
}

.price-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  margin-top: 6px; /* THIS aligns month & value visually */
}

.price-month {
  font-size: 20px;
  color: #3b82f6;
  font-weight: 500;
}

.price-value {
  font-size: 20px;
  color: #3b82f6;
  font-weight: 600;
}


.omega-light-wrapper {
  padding: 60px 20px;
  background: #f8fafc;
  display: flex;
  justify-content: center;
}

.omega-light-card {
  width: 100%;
  max-width: 980px;
  background: #ffffff;
  padding: 36px 40px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.omega-light-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #0f172a;
}

  .omega-light-title span {
    color: #2563eb;
  }

.omega-light-form {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: end;
}

.omega-light-group label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #475569;
}

/* FILE */
.omega-light-file {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #cbd5f5;
}

/* RADIO */
.omega-light-radio {
  display: flex;
  gap: 14px;
  font-size: 14px;
  color: #0f172a;
}

  .omega-light-radio label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }

/* TIME */
.omega-light-time {
  display: flex;
  align-items: center;
  gap: 10px;
}

  .omega-light-time input {
    background: #f8fafc;
    border: 1px solid #cbd5f5;
    padding: 10px 12px;
    border-radius: 10px;
    color: #0f172a;
    width: 100%;
  }

  .omega-light-time span {
    color: #64748b;
    font-size: 13px;
  }

/* BUTTON */
.omega-light-action button {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: none;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  width: 100%;
  transition: 0.2s ease;
}

  .omega-light-action button:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-1px);
  }

/* MOBILE */
@media (max-width: 900px) {
  .omega-light-form {
    grid-template-columns: 1fr;
  }
}

/* Add inner spacing to the entire form */
.omega-light-form {
  padding: 24px 20px; /* ✅ adds breathing room */
}

/* Space out each form group */
.omega-light-group {
  margin-bottom: 18px; /* ✅ vertical spacing between sections */
}

/* Increase spacing inside file input */
.omega-light-file {
  padding: 14px 14px; /* ✅ less cramped file area */
}

/* Space radio group better */
.omega-light-radio {
  margin-top: 8px;
  gap: 18px; /* ✅ wider space between options */
}

/* Space between time inputs */
.omega-light-time {
  margin-top: 6px;
  gap: 16px; /* ✅ prevents tight time fields */
}

/* Button spacing from fields */
.omega-light-action {
  margin-top: 20px;
}



/* ================================
   PREMIUM FORM CONTAINER
================================ */
.omega-light-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  padding: 28px 26px;
  border: 1px solid #e6eeff;
}

/* ================================
   PREMIUM FORM SPACING
================================ */
.omega-light-group {
  margin-bottom: 22px;
}

  /* ================================
   PREMIUM LABELS
================================ */
  .omega-light-group label {
    font-size: 13px;
    font-weight: 600;
    color: #20376C;
    letter-spacing: 0.3px;
  }

/* ================================
   PREMIUM INPUTS
================================ */
.omega-light-file,
.omega-light-card input[type="text"],
.omega-light-card input[type="time"] {
  background: #ffffff;
  border: 1px solid #dbe6ff;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 15px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,.05);
  transition: all .2s ease;
}

.omega-light-card input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* ================================
   PREMIUM RADIO GROUP
================================ */
.omega-light-radio {
  display: flex;
  gap: 22px;
  margin-top: 8px;
}

  .omega-light-radio label {
    font-weight: 500;
    color: #4b5d8a;
    cursor: pointer;
  }

/* ================================
   PREMIUM TIME RANGE
================================ */
.omega-light-time {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

/* ================================
   PREMIUM ACTION BUTTON
================================ */
.omega-light-action {
  margin-top: 26px;
}

  .omega-light-action button {
    background: linear-gradient(135deg, #2563eb, #1e3a8a);
    border: none;
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all .2s ease;
  }

    .omega-light-action button:hover {
      transform: translateY(-1px);
      box-shadow: 0 16px 36px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255,255,255,0.35);
    }



/* =========================================================
   GLOBAL / PAGE
   ========================================================= */
body {
  background: #f5f7fb;
}

/* Wrapper + top bar */
.byob-wrapper {
  color: #111827;
}

.byob-topbar {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
}

.byob-title {
  font-weight: 600;
  color: #111827;
}

  .byob-title .text-accent {
    color: #2563eb;
  }

.byob-select {
  min-width: 260px;
}

.byob-input-short {
  min-width: 240px;
}

/* =========================================================
   GENERIC TAT CARD (same style as converter)
   ========================================================= */
.tat-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 28px 32px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

/* BYOB main card just adds a bit more padding */
.byob-card {
  padding: 32px 36px;
}

/* Section titles inside cards */
.byob-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* Labels */
.tat-card label,
.tat-card .form-label,
.byob-label {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

/* Inputs + selects */
.tat-card input[type="text"],
.tat-card input[type="number"],
.tat-card input[type="time"],
.tat-card input[type="email"],
.tat-card input[type="file"],
.tat-card input[type="date"],
.tat-card select {
  width: 100%;
  border: 1px solid #d4ddf0;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 14px;
  color: #111827;
}

.tat-card input::placeholder {
  color: #9ca3af;
}

.tat-card input:focus,
.tat-card select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.20);
}

/* Help / muted text */
.tat-card .text-muted,
.tat-card small {
  color: #6b7280 !important;
  font-size: 12px;
}

/* Radios & checkboxes */
.tat-card .form-check-input {
  border-color: #9ca3af;
}

  .tat-card .form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
  }

.tat-card .form-check-label {
  font-size: 13px;
  color: #111827;
}

/* =========================================================
   SUBCARDS (inner panels in config + filter)
   ========================================================= */
.byob-subcard {
  background: #f9fbff;
  border-radius: 14px;
  border: 1px solid #d4ddf0;
  padding: 12px 14px 14px;
}

.byob-subtitle {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

/* Tiny help badge next to subtitles */
.byob-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  width: 18px;
  height: 18px;
  font-size: 11px;
  border-radius: 999px;
  border: 1px solid #d1d5db;
  color: #6b7280;
  background: #ffffff;
}

/* =========================================================
   TIME / DAY GRIDS
   ========================================================= */
.byob-time-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 8px;
}

  .byob-time-grid .form-check-input {
    margin-top: 0.15rem;
  }

.byob-week-grid .form-check {
  margin-right: 6px;
}

/* "all / none" links */
.byob-link {
  color: #2563eb;
  text-decoration: none;
}

  .byob-link:hover {
    text-decoration: underline;
  }

/* =========================================================
   BUTTONS
   ========================================================= */
/* Main TAT primary button – gradient pill */
.btn-tat-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.35);
  transition: transform 0.08s ease, box-shadow 0.08s ease, opacity 0.1s;
}

  .btn-tat-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px rgba(37, 99, 235, 0.4);
    opacity: 0.96;
  }

  .btn-tat-primary:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.30);
  }

/* Light secondary buttons for Export etc. */
.byob-btn-secondary {
  border-radius: 999px;
  border: 1px solid #d4ddf0;
  color: #111827;
  background: #ffffff;
  font-weight: 500;
}

  .byob-btn-secondary:hover {
    background-color: #edf2ff;
  }

/* =========================================================
   PROMO BANNER
   ========================================================= */
.byob-promo-card {
  background: linear-gradient(135deg, #eef3ff, #dde7ff);
  border-radius: 20px;
  padding: 22px 26px;
  border: 1px solid #c7d2fe;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.byob-promo-logo {
  max-height: 60px;
}

.byob-promo-text {
  color: #374151;
  font-size: 13px;
}

.byob-promo-btn {
  /* uses same gradient as primary, but not full width */
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
  padding: 9px 20px;
  border: none;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
}

  .byob-promo-btn:hover {
    filter: brightness(1.05);
    color: #ffffff;
  }

/* =========================================================
   DISCLAIMER
   ========================================================= */
.byob-disclaimer {
  font-size: 11px;
  margin-top: 6px;
  color: #6b7280 !important;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .tat-card,
  .byob-card {
    padding: 20px 18px;
  }

  .byob-promo-card {
    text-align: center;
  }
}


/* Annual returns – avoid overlap on Profit column */
.results-table-annual td,
.results-table-annual th {
  white-space: nowrap;
}

  /* Allow other columns to wrap percentages nicely without squishing */
  .results-table-annual td:nth-child(3),
  .results-table-annual td:nth-child(6) {
    white-space: normal;
  }

/* Profit cell layout */
.results-profit-cell {
  text-align: right;
}

  .results-profit-cell .profit-amount {
    font-weight: 600;
    line-height: 1.1;
  }

.results-percent {
  font-size: 11px;
  line-height: 1.1;
}


/* Wrapper stays the same */
.omega-light-wrapper {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
}

/* Background logos behind card */
.omega-bg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16; /* was ~0.08 – make more visible */
  max-width: 360px; /* larger so they extend past the card */
}

/* Left logo – move up and slightly inside */
.omega-bg-left {
  top: -80px; /* was very close to top of wrapper */
  left: -150px; /* overlap the card edge a bit */
}

/* Right logo – move up and more under the button */
.omega-bg-right {
  bottom: -40px; /* move up from very bottom */
  right: -60px; /* overlap card edge a bit */
}

/* Foreground card */
.omega-light-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
  padding: 32px 36px;
}

/* Sidebar dropdown default state: nakatago ang submenu */
#sidebar .sidebar-dropdown > .sidebar-submenu {
  display: none;
  padding-left: 5px;
}

/* Kung active ang parent, ipakita ang submenu */
#sidebar .sidebar-dropdown.active > .sidebar-submenu {
  display: block;
}

/* Optional: rotation sa chevron */
#sidebar .sidebar-dropdown .chevron {
  font-size: 11px;
  transition: transform 0.2s ease;
}

#sidebar .sidebar-dropdown.active .chevron {
  transform: rotate(180deg);
}



/* Cards */
.dash-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.tv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f4f6ff;
  color: #1d3cff;
  font-weight: 700;
  font-size: 12px;
}

.discord-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #5865F2;
  margin-top: 6px;
}

.feature-updates {
  font-size: 14px;
}

  .feature-updates a {
    color: #2b6cff;
    text-decoration: none;
  }

    .feature-updates a:hover {
      text-decoration: underline;
    }

/* Offer area wrapper */
.offer-shell {
  border-radius: 14px;
}

.offer-shell {
  border-radius: 16px;
  height: 100%;
}

  .offer-shell .perk-section {
    height: 100%;
  }

  .offer-shell .perk-credit-outer {
    height: 100%;
  }


/* CARD SHELL */
.offer-compact {
  background: linear-gradient(135deg, #1e3c86, #274b9f);
  border-radius: 18px;
  padding: 28px;
  color: #fff;
}

/* TITLE */
.offer-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

  .offer-title span {
    font-weight: 500;
    opacity: 0.9;
  }

/* LIST */
.offer-list li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  position: relative;
  padding-left: 22px;
}

  .offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5cff9d;
    font-weight: bold;
  }

/* MINI CREDIT CARD */
.credit-mini {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  color: #222;
}

/* PROMO BADGE */
.badge-promo {
  background: #e8fff1;
  color: #2ecc71;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}

/* PRICE */
.price {
  font-size: 2rem;
  font-weight: 700;
  color: #3b6cff;
}

.price-sub {
  font-size: 0.8rem;
  color: #666;
}

/* LOGO */
.credit-logo {
  max-width: 120px;
  opacity: 0.9;
}


.trial-status-banner {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 6px 20px rgba(47, 91, 255, 0.15);
}

  .trial-status-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 4px;
    background: linear-gradient(135deg, #2f5bff, #4f7cff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }



.tv-chart-clip {
  position: relative;
  border-radius: 12px;
  overflow: hidden; /* IMPORTANT: mo putol sa lapaw */
  background: #0b1220;
}

.tv-chart-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Bottom overlay bar */
.tv-bottom-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(10, 15, 30, 0.65);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* prevent text from pushing outside */
.tv-label {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tv-bottom-bar .btn {
  flex: 0 0 auto;
  padding: 4px 14px;
  font-size: 13px;
  border-radius: 6px;
}

.tv-chart-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #0b1220;
}

.tv-chart-img {
  width: 100%;
  display: block;
}

/* Bottom overlay bar */
.tv-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(10, 15, 30, 0.65); /* ~65% opacity */
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.tv-label {
  color: #e5e7eb;
  font-size: 13px;
  font-weight: 500;
}

/* Optional: tighten button */
.tv-bottom-bar .btn {
  padding: 4px 14px;
  font-size: 13px;
  border-radius: 6px;
}
