/* Business Starter Calculator – Frontend styles */
.bsc-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  font-family: Arial, Helvetica, sans-serif;
  color: #2c3e50;
}
.bsc-container h1, .bsc-container h2 { text-align: center; }
.bsc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px 20px;
}
.bsc-section {
  margin: 18px 0;
  padding: 12px;
  border: 1px solid #e6e8eb;
  border-radius: 8px;
  background: #f9fafb;
}
.bsc-field { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.bsc-field label { font-size: 14px; }
.bsc-field input {
  width: 140px;
  padding: 6px 8px;
  border: 1px solid #cfd7df;
  border-radius: 6px;
  font-size: 14px;
}
.bsc-btn {
  display: inline-block;
  margin: 14px auto;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.bsc-btn:hover { filter: brightness(0.95); }
.bsc-results {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: #eef2ff;
}
.bsc-results p { margin: 6px 0; }
.bsc-note { font-size: 12px; color: #6b7280; text-align: center; margin-top: 8px; }
.bsc-inline { text-align: center; }
