/* Minimal styles for dynamically generated tables */
.breakdown-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.breakdown-table th,
.breakdown-table td {
  padding: 12px 10px;
  text-align: left;
  border-bottom: 1px solid #f3f4f6;
}

.breakdown-table th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.breakdown-table .amount {
  text-align: right;
  font-weight: 600;
}

.breakdown-table tbody tr:hover {
  background-color: #f9fafb;
}

/* Loading state for button */
.calculate-btn.loading {
  background: linear-gradient(135deg, #9ca3af, #6b7280) !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.calculate-btn.loading::after {
  content: " ⏳";
}

/* Highlight for important values in tables */
.highlight {
  background: linear-gradient(120deg, #dbeafe 0%, #fecaca 100%);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}
