/* quarterly-tax-calculator — extracted from inline <style> */
.evvy-tax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.evvy-tax-grid .form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.evvy-tax-grid .form-text {
  font-size: 0.75rem;
  margin-top: 0.25rem;
}
.evvy-schedule-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.evvy-schedule-card {
  background: var(--bs-body-bg, #fff);
  border: 1.5px solid var(--evvy-border-color, #DEE2E6);
  border-radius: var(--evvy-radius-lg, 12px);
  padding: 1rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.evvy-schedule-card.evvy-schedule-next {
  border-color: var(--cluster-dark, #1D3354);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--cluster-dark, #1D3354) 15%, transparent);
}
.evvy-schedule-quarter {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--evvy-text-secondary, #666);
  margin-bottom: 0.25rem;
}
.evvy-schedule-date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--evvy-text-primary, #333);
  margin-bottom: 0.375rem;
}
.evvy-schedule-amount {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--cluster-dark, #1D3354);
}
.evvy-schedule-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.5rem;
  border-radius: 50rem;
  background: var(--cluster-dark, #1D3354);
  color: #fff;
  margin-top: 0.375rem;
}
.evvy-analyzer {
  margin-top: 1.25rem;
  background: var(--bs-body-bg, #fff);
  border: 1px solid var(--evvy-border-color, #DEE2E6);
  border-radius: var(--evvy-radius-lg, 12px);
  padding: 1.25rem 1.5rem;
}
.evvy-analyzer-header {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--evvy-text-secondary, #666);
  margin-bottom: 0.75rem;
}
.evvy-analyzer-status {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}
.evvy-analyzer-status.on-track {
  background: color-mix(in srgb, #198754 10%, transparent);
  color: #198754;
}
.evvy-analyzer-status.behind {
  background: color-mix(in srgb, #dc3545 10%, transparent);
  color: #dc3545;
}
.evvy-analyzer-status.ahead {
  background: color-mix(in srgb, #0d6efd 10%, transparent);
  color: #0d6efd;
}
.evvy-monthly-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.evvy-monthly-grid .form-label {
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.125rem;
}
.evvy-monthly-grid .form-control {
  font-size: 0.8125rem;
  padding: 0.375rem 0.5rem;
}
.evvy-section-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--evvy-text-secondary, #666);
  margin-top: 0.5rem;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.evvy-section-toggle i {
  transition: transform 0.2s ease;
}
.evvy-section-toggle.open i {
  transform: rotate(90deg);
}
.evvy-collapsible {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.evvy-collapsible.open {
  max-height: 800px;
  opacity: 1;
  margin-top: 0.75rem;
}
[data-bs-theme="dark"] .evvy-schedule-card {
  background: var(--evvy-gray-100, #1E1E1E);
}
[data-bs-theme="dark"] .evvy-analyzer {
  background: var(--evvy-gray-100, #1E1E1E);
}
[data-bs-theme="dark"] .evvy-schedule-badge {
  color: #1a1a2e;
}
@media (max-width: 575.98px) {
  .evvy-tax-grid { grid-template-columns: 1fr; }
  .evvy-schedule-row { grid-template-columns: 1fr 1fr; }
  .evvy-monthly-grid { grid-template-columns: repeat(2, 1fr); }
  #results-area .evvy-results-row { grid-template-columns: 1fr !important; }
}
