/* ============================================
   ITR Wizard — Shared Styles
   Extracted from inline <style> blocks
   ============================================ */

/* === LAYOUT === */
.wizard-container {
  max-width: 960px;
  margin: 20px auto;
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border: 1px solid #eef1f4;
}

/* === TITLE ROW === */
.title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: .5rem;
}
.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  background: linear-gradient(135deg,#0d6efd,#6ea8fe);
}
.sublead-strong {
  color: #495057;
  font-weight: 600;
}

/* === SECTION HEADER === */
.section-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.sec-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f3f5;
  color: #495057;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  border: 1px solid #e5e7eb;
}
.section-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0;
}

/* === INPUT ICONS === */
.input-icon {
  position: relative;
}
.input-icon .bi {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .65;
  pointer-events: none;
  font-size: 1rem;
}
.input-icon input,
.input-icon select {
  padding-left: 2rem;
}

/* === FORM CONTROLS === */
.form-control,
.form-select {
  color: #212529;
  font-weight: 600;
}
.form-control::placeholder {
  color: #6c757d;
  opacity: .95;
}
.input-group-text {
  font-weight: 700;
}

/* === BUTTONS === */
.btn-lg-bold {
  font-weight: 600;
  padding: 12px 22px;
}
.btn-choice {
  min-width: 90px;
  font-weight: 600;
}

/* === FORM BADGE === */
.form-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #0d6efd;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 4px 10px rgba(13,110,253,.25);
  font-weight: 700;
}
.form-badge .bi { opacity: .9; }

/* === CARD PATTERNS === */
.salary-card,
.property-card,
.biz-card,
.oi-card,
.ded-card,
.bank-card {
  border: 1px solid #edf0f4;
  border-radius: 12px;
  padding: 16px 16px 18px;
  background: #fafbff;
  box-shadow: 0 4px 12px rgba(13,110,253,.05);
  position: relative;
  margin-bottom: 20px;
}

/* === CARD HEADER FLEX === */
.card-header-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
}
@media (min-width:768px) {
  .card-header-flex {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  width: 100%;
}
@media (min-width:768px) {
  .card-actions {
    width: auto;
    justify-content: flex-end;
  }
}

/* === READONLY / COMPUTED === */
.readonly-like {
  background: #f8f9fa !important;
  cursor: not-allowed !important;
  user-select: none !important;
  caret-color: transparent !important;
  pointer-events: none !important;
}
.rupee-line { font-weight: 700; }

/* === NOTES === */
.note-strong { font-weight: 800; }
.note-center { text-align: center; }

/* === MISC BLOCKS === */
.vehicle-block,
.ada-block {
  border: 1px solid #edf0f4;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
}
.bank-hd { font-weight: 700; }
.q-text { font-weight: 600; }
.question-line { font-weight: 600; }
