/* ===== Property Tax Calculator Specific Styles ===== */
#property-tax-calculator {
    /* Scope all property-tax-specific styles under this root */
}

/* Inherit all styles from house-affordability-calculator.css */
/* All calculator styles are shared through the common design system */

/* Tax Display */
.tax-display {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: var(--border-radius);
}

.tax-value {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--primary-coral);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.tax-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Tax Metrics */
.tax-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

/* Tax Breakdown */
.tax-breakdown {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--background-gray);
    border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 768px) {
    .tax-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}