/* Page */
.scanner-page {
  text-align: center;
}

/* Subtitle */
.scanner-subtitle {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 18px;
}

/* Toggle */
.scanner-toggle {
  display: flex;
  background: #c7ccd1;
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 18px;
}

.toggle-pill {
  flex: 1;
  height: 42px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  color: #9ca3af;
}

.toggle-pill img {
  width: 25px;
  height: 25px;
  opacity: 0.5;
}

.toggle-pill.active {
  color: #fff;
}

.toggle-pill.active img {
  opacity: 1;
}

.toggle-pill.bullish.active {
  background: #0bb36b;
  box-shadow: 0 6px 16px rgba(11,179,107,.35);
}

.toggle-pill.bearish.active {
  background: #ef4444;
  box-shadow: 0 6px 16px rgba(239,68,68,.35);
}

/* Section title */
.scanner-section-title {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .8px;
  margin: 10px 0 14px;
}

.bullish-text { color:#9fbfb0; }
.bearish-text { color:#fca5a5; }

/* Empty state */
.scanner-empty {
  margin-top: 30px;
}

.empty-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-icon img {
  width: 50px;   /* 👈 FIXED */
  height: 50px;
}

.scanner-empty h3 {
  margin: 0;
  font-size: 18px;
}

.scanner-empty p {
  font-size: 14px;
  color: #9ca3af;
  max-width: 350px;
  margin: 8px auto 0;
  line-height: 1.5;
}

/* =========================
   STOCK CARD
========================= */
.scanner-card {
  margin-top: 16px;
  border-radius: 18px;
  padding: 16px;
  text-align: left;
  position: relative;
}

.bullish-card {
  background: #ecfdf5;
}

.bearish-card {
  background: #fef2f2;
}

/* Highlight trend word */
.scanner-card .bullish-word {
  color: #16a34a;   /* green */
  font-weight: 700;
}

.scanner-card .bearish-word {
  color: #dc2626;   /* red */
  font-weight: 700;
}


/* top text only */
.scanner-card-top {
  font-size: 14px;
}

/* BUY / SELL button */
.trade-btn {
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 54px;     /* UPL ke level par */
  right: 16px;
}

.trade-btn.buy { background:#059669; }
.trade-btn.sell { background:#dc2626; }

.scanner-card h2 {
  margin: 10px 0 2px 10px;
 
}

.company-pill {
  background:#e5e7eb;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-block;
  margin-left:10px;

}

.scanner-divider {
  height: 1px;
  background: rgba(0,0,0,.15);
  margin: 14px 0;
}

/* Levels */
.scanner-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  text-align: center;
}

.scanner-levels span {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.scanner-levels b {
  display: block;
  font-size: 14px;
}
