
/* =========================================================
   WELCOME SECTION
========================================================= */
.welcome {
  margin-bottom: 12px;
}


/* =========================================================
   COMMON CARD STYLE
========================================================= */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 14px;
}

.card.soft {
  background: #f8fbff;
}

.card-header {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.icon {
  font-size: 20px;
}

/* =========================================================
   MONTHLY PERFORMANCE (FINAL LOCK)
========================================================= */

.mp-card {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

/* HEADER */
.mp-header {
  background: #0b4bb3;
  color: #fff;
  padding: 14px 16px;
}

.mp-title {
  display: flex;
  align-items: center;            /* 🔑 icon vertical center */
  gap: 10px;
}

.mp-header-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg-header-icon {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.mp-title-text {
  display: flex;
  flex-direction: column;
}

.mp-header strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.mp-header small {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

/* STATS */
.mp-stats {
  display: flex;
  justify-content: space-between;   /* left–center–right */
  padding: 22px 44px 16px;
  text-align: center;
}

.mp-item {
  width: 90px;
}

/* ICONS */
.mp-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.svg-icon {
  width: 18px;
  height: 18px;
}

/* ICON COLORS */
.bg-green {
  background: #e7f6ef;
  color: #1aa053;
}

.bg-gray {
  background: #f0f1f3;
  color: #8a8a8a;
}

.bg-red {
  background: #fdecec;
  color: #e53935;
}

/* TEXT */
.mp-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}

.mp-value {
  font-size: 20px;
  font-weight: 700;
  margin: 2px 0;
}

.mp-percent {
  font-size: 12px;
}

.mp-item.profit { color: #1aa053; }
.mp-item.notrade { color: #8a8a8a; }
.mp-item.loss { color: #e53935; }

/* PROGRESS BAR */
.mp-bar {
  display: flex;
  height: 8px;
  margin: 0 16px;
  border-radius: 6px;
  overflow: hidden;
  background: #e5e9f0;
}

.bar-profit { background: #1aa053; }
.bar-notrade { background: #9e9e9e; }
.bar-loss { background: #e53935; }

/* FOOTER */
.mp-footer {
  text-align: center;
  font-size: 12px;
  padding: 10px 0 14px;
  color: #555;
}

/* =========================================================
   HOW WAS YOUR DAY
========================================================= */
.trade-day-section {
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 16px;
}

/* Header */
.trade-day-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

/* Header icon (same as Monthly Performance) */
.trade-day-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eaf1ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trade-day-icon img {
  width: 45px;
  height: 45px;
}

.trade-day-text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.trade-day-text small {
  font-size: 13px;
  color: #6b7280;
}

/* =========================
   OPTIONS
========================= */
.trade-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Option card */
.trade-option {
  background: #fff;
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(0,0,0,0.06);
}

/* 🔥 ICON CIRCLE (same visual weight as Profit Recorded) */
.trade-option .option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.trade-option img {
  width: 40px;
  height: 40px;
}

/* States */
.trade-option.profit {
  color: #16a34a;
}
.trade-option.profit .option-icon {
  background: #dcfce7;
}

.trade-option.neutral {
  color: #374151;
}
.trade-option.neutral .option-icon {
  background: #f3f4f6;
}

.trade-option.loss {
  color: #dc2626;
}
.trade-option.loss .option-icon {
  background: #fee2e2;
}

/* =========================================================
   PROFIT RECORDED CARD (ACCENT STYLE)
========================================================= */

.session-card {
  background: #f8fbff;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;

  /* outer border */
  border: 1px solid #e3ecf7;
}

/* left blue accent border */
.session-card.accent {
  border-left: 4px solid #0b4bb3;
}

/* left section */
.session-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* left icon */
.session-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e6f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b4bb3;
}

.session-svg {
  width: 20px;
  height: 20px;
}

/* text */
.session-text {
  display: flex;
  flex-direction: column;
}

.session-title {
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

.session-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

/* right check icon */
.session-right {
  width: 24px;
  height: 24px;
  color: #9ca3af;
}

.check-svg {
  width: 24px;
  height: 24px;
}


/* =========================================================
   TRADING WISDOM
========================================================= */

.wisdom-card {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}

/* Header */
.wisdom-header {
  background: #0b4bb3;
  color: #fff;
  padding: 14px 16px;
}

.wisdom-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wisdom-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wisdom-svg {
  width: 22px;
  height: 22px;
  color: #ffffff;
}

.wisdom-title-text {
  display: flex;
  flex-direction: column;
}

.wisdom-header strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.wisdom-header small {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

/* Quote box */
.wisdom-quote {
  margin: 16px;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef5ff, #fff0f0);
  text-align: center;
}

.wisdom-quote p {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.wisdom-quote span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #0b4bb3;
}

/* Button */
.wisdom-btn {
  margin: 0 16px 16px;
  width: calc(100% - 32px);
  height: 44px;
  border: none;
  border-radius: 14px;
  background: #ff3b3b;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.refresh-svg {
  width: 18px;
  height: 18px;
}

/* =========================================================
   HOW TO TRADE – FINAL LOCKED DESIGN
========================================================= */
.howto-card {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, #f5f9ff, #fff5f5);
}

/* Header */
.howto-header {
  background: #0b4bb3;
  color: #fff;
  padding: 14px 16px;
}

.howto-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.howto-header-icon {
  width: 20px;
  height: 20px;
  color: #fff;
}

.howto-title-text {
  display: flex;
  flex-direction: column;
}

.howto-header strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.howto-header small {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

/* Slides */
.howto-slides {
  padding: 16px;
}

/* 🔒 Only ONE slide visible */
.howto-slide {
  display: none;
}

.howto-slide.active {
  display: block;
}

.howto-step {
  display: inline-block;
  background: #0b4bb3;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* 🔥 CONTENT FIXED */
.howto-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;   /* icon upar align */
  gap: 12px;
}

/* Scan & Build → BLUE */
.howto-content h3 {
  font-size: 18px;
  margin: 0;
  color: #0b4bb3;
  font-weight: 700;
}

/* Your Watchlist → chhota + close */
.howto-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 2px 0 6px;
}

.howto-content p {
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

/* Illustration → thoda upar */
.howto-illus {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  margin-top: 6px;
}

/* Dots */
.howto-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.howto-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}

.howto-dots .active {
  background: #ff3b3b;
}

/* Hint */
.howto-hint {
  text-align: center;
  font-size: 12px;
  color: #6b7280;
  padding-bottom: 14px;
}

/* =========================================================
   TRADING STATUS – FINAL LOCKED CSS
========================================================= */

.trading-status-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* HEADER */
.status-header {
  background: #0b4bb3;
  padding: 14px 16px;
  color: #fff;
}

.status-title {
  display: flex;
  align-items: center;   /* KEY FIX */
  gap: 10px;
}


.status-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.status-title-text {
  display: flex;
  flex-direction: column;
  /*justify-content: center; /* ICON CENTER WITH TITLE + DESC */
}


.status-title-text strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.status-title-text small {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

/* BODY */
.status-body {
  padding: 20px 16px 18px;
  text-align: center;
  background: linear-gradient(135deg, #f4f8ff, #fff4f4);
}

.status-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #eaf1ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.status-body h3 {
  margin: 0;
  font-size: 18px;
}

.subtext {
  margin: 4px 0 14px;
  font-size: 13px;
  color: #666;
}

/* LEVEL CARD */
.level-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.stars {
  font-size: 22px;   /* ⭐ STAR SIZE INCREASED */
  letter-spacing: 4px;
  color: #cfd6e4;
  margin-bottom: 6px;
}

.level-name {
  font-size: 16px;
  font-weight: 600;
  
}


/* LEVEL UP TOGGLE */
.level-toggle {
  margin: 16px 16px 0;  /* left-right push */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}


.level-toggle .arrow {
  font-size: 18px;
}

/* LEVEL META STAR FIX */

.level-meta{
  font-size: 14px;
  color:#6b7280;
  margin-top:4px;
}


/* ===============================
   PRO TIP SECTION (FINAL)
================================ */

.protip-card {
 
  padding: 16px 18px;
  border-radius: 18px;
margin-bottom: 16px;
  
  /* subtle border */
  border: 1px solid rgba(0,0,0,0.04);

  /* light elevation */
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.protip-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.protip-text {
  font-size: 14px;
  line-height: 1.2;
  color: #333;
}

/* ===============================
   PREMIUM MEMBERSHIP
================================ */
.pm-card {
  border-radius: 18px;
  
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* HEADER */
.pm-header {
  background: #0b4bb3;
  padding: 14px 16px;
  color: #fff;
}

.pm-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-icon {
  font-size: 20px;
  line-height: 1;
}

/* 🔑 MAIN FIX */
.pm-title-text {
  display: flex;
  flex-direction: column;
}

.pm-title-text strong {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.pm-title-text small {
  font-size: 12px;
  opacity: 0.9;
  line-height: 1.2;
}

/* BODY */
.pm-body {
  padding: 16px;
}

.pm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pm-row:last-of-type {
  border-bottom: none;
}

.pm-days {
  color: #0b4bb3;
  font-weight: 700;
}

/* BUTTON */
.pm-btn {
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
}

