/* property-tax-calculator — extracted from inline <style> */
.evvy-rate-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.evvy-whatif-section {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--cluster-surface);
  border-radius: var(--evvy-radius-lg, 12px);
  border: 1px solid var(--evvy-border-color, #DEE2E6);
}
.evvy-whatif-section .evvy-input-label {
  margin-bottom: 0.5rem;
}
.evvy-whatif-val {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cluster-dark);
  text-align: center;
  margin-top: 0.5rem;
}
.evvy-parcel-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.evvy-parcel-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.75rem;
  align-items: end;
}
.evvy-parcel-row .form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.evvy-parcel-remove {
  background: none;
  border: 1px solid var(--evvy-border-color, #DEE2E6);
  border-radius: var(--evvy-radius, 8px);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--evvy-text-secondary, #666);
  transition: var(--evvy-transition-fast, 0.15s ease);
}
.evvy-parcel-remove:hover {
  color: #dc3545;
  border-color: #dc3545;
}
.evvy-add-parcel-btn {
  background: none;
  border: 1px dashed var(--cluster-dark);
  border-radius: var(--evvy-radius, 8px);
  color: var(--cluster-dark);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--evvy-transition-fast, 0.15s ease);
  width: 100%;
}
.evvy-add-parcel-btn:hover {
  background: var(--cluster-surface);
}
.evvy-projection-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.evvy-projection-table th,
.evvy-projection-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--evvy-border-color, #DEE2E6);
}
.evvy-projection-table th {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--evvy-text-secondary, #666);
}
.evvy-projection-table td:last-child,
.evvy-projection-table th:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.evvy-projection-table td:last-child {
  font-weight: 600;
}
[data-bs-theme="dark"] .evvy-whatif-section {
  background: var(--evvy-gray-100, #1E1E1E);
}
@media (max-width: 575.98px) {
  .evvy-rate-row { grid-template-columns: 1fr; }
  .evvy-parcel-row { grid-template-columns: 1fr; }
  #results-area .evvy-results-row { grid-template-columns: 1fr !important; }
}
