/* Only style the calculator table and form */
#sbi-wealth-calculator form {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
  max-width: 420px;
  margin: 0 auto 24px auto;
}
#sbi-wealth-calculator label {
  display: block;
  margin-bottom: 6px;
  color: #273c75;
  font-weight: 500;
}
#sbi-wealth-calculator input,
#sbi-wealth-calculator select {
  width: 100%;
  padding: 8px;
  border: 1.5px solid #dcdde1;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 12px;
  background: #f5f6fa;
}
#sbi-wealth-calculator button {
  width: 100%;
  padding: 11px;
  background: #273c75;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
#sbi-wealth-calculator button:hover {
  background: #40739e;
}
#result {
  margin-top: 22px;
}
.sbi-table-wrapper {
  overflow-x: auto;
}
.sbi-result-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 6px;
  font-size: 1rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
}
.sbi-result-table th, .sbi-result-table td {
  border: 1px solid #dcdde1;
  padding: 8px 10px;
  text-align: right;
}
.sbi-result-table th {
  background: #273c75;
  color: #fff;
  font-weight: 600;
}
.sbi-result-table tr:nth-child(even) {
  background: #f5f6fa;
}
.sbi-result-table tr:nth-child(odd) {
  background: #f1f2f6;
}
@media (max-width: 600px) {
  #sbi-wealth-calculator form {
    padding: 10px;
  }
  .sbi-result-table th, .sbi-result-table td {
    font-size: 0.95rem;
    padding: 6px 4px;
  }
}
