.btc-loan-calculator {
  max-width: 980px;
  margin: 0 auto;
}

.btc-field {
  margin-bottom: 12px;
}

.btc-field input,
.btc-field select {
  width: 100%;
  max-width: 420px;
  padding: 8px 10px;
  box-sizing: border-box;
}

.btc-btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 600;
}

.btc-btn-primary {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.btc-btn-secondary {
  background: #ffffff;
}

.btc-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  margin: 14px 0;
  background: #ffffff;
}

.btc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 900px) {
  .btc-grid {
    grid-template-columns: 1fr;
  }
}

.btc-warning {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-weight: 600;
}

.btc-note {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}

.btc-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.btc-cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
