/* financialHealthScoring.css - Professional Financial SaaS Version */

/* ===== MAIN CONTAINER ===== */
.fhs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #FFFFFF;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

/* ===== HEADER SECTION ===== */
.fhs-header {
    background: #3b82f6;
    color: white;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.fhs-title-section {
    position: relative;
    z-index: 2;
    margin-bottom: 1.875rem;
}

.fhs-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.fhs-subtitle {
    font-size: 1.0625rem;
    opacity: 0.95;
    margin: 0;
    font-weight: 400;
}

/* ===== OVERALL HEALTH DASHBOARD ===== */
.fhs-overall-dashboard {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.fhs-health-gauge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fhs-gauge-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.fhs-gauge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.fhs-gauge-score {
    font-size: 3rem;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.fhs-gauge-label {
    font-size: 0.875rem;
    opacity: 0.95;
    margin-top: 0.25rem;
    font-weight: 500;
}

.fhs-health-summary {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.fhs-health-status {
    font-size: 1.5rem;
    font-weight: 600;
}

.fhs-status-excellent { color: #10B981; }
.fhs-status-good { color: #22C55E; }
.fhs-status-moderate { color: #F59E0B; }
.fhs-status-weak { color: #EF4444; }
.fhs-status-critical { color: #DC2626; }

.fhs-health-recommendation {
    font-size: 1.0625rem;
    line-height: 1.6;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.25rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.fhs-component-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.fhs-component {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.2s ease;
}

.fhs-component:hover {
    background: rgba(255, 255, 255, 0.25);
}

.fhs-component-label {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.95;
    margin-bottom: 0.25rem;
}

.fhs-component-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
}

/* ===== NAVIGATION TABS ===== */
.fhs-nav-tabs {
    display: flex;
    background: white;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fhs-nav-tabs::-webkit-scrollbar {
    display: none;
}

.fhs-tab-btn {
    background: none;
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    position: relative;
}

.fhs-tab-btn:hover {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.05);
}

.fhs-tab-btn.active {
    color: #3b82f6;
    border-bottom-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.fhs-tab-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: -2px;
}

/* ===== TAB CONTENT ===== */
.fhs-tab-content {
    background: white;
    min-height: 600px;
}

.fhs-tab-pane {
    display: none;
    padding: 2.5rem;
}

.fhs-tab-pane.active {
    display: block;
}

/* ===== OVERVIEW TAB STYLES ===== */
.fhs-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.fhs-score-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fhs-score-card {
    background: #f9fafb;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #3b82f6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.fhs-score-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fhs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fhs-card-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.fhs-card-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.fhs-badge-low, .fhs-badge-excellent { background: #dcfce7; color: #166534; }
.fhs-badge-moderate, .fhs-badge-good { background: #fef3c7; color: #92400e; }
.fhs-badge-high, .fhs-badge-weak { background: #fee2e2; color: #991b1b; }

.fhs-card-score {
    font-size: 2.5rem;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fhs-card-interpretation {
    color: #6b7280;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.fhs-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.fhs-progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.fhs-progress-low, .fhs-progress-excellent { background: #10b981; }
.fhs-progress-moderate, .fhs-progress-good { background: #f59e0b; }
.fhs-progress-high, .fhs-progress-weak { background: #ef4444; }

/* ===== METRICS OVERVIEW ===== */
.fhs-metrics-overview {
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-metrics-overview h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
}

.fhs-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.fhs-metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #f3f4f6;
    transition: all 0.2s ease;
}

.fhs-metric-item:hover {
    background: #f3f4f6;
}

.fhs-metric-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.fhs-metric-value {
    font-size: 1.0625rem;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
}

.fhs-metric-good { color: #059669; }
.fhs-metric-moderate { color: #d97706; }
.fhs-metric-bad { color: #dc2626; }

/* ===== TREND CHART ===== */
.fhs-trend-chart {
    grid-column: 1 / -1;
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-trend-chart h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
}

/* ===== ALTMAN TAB STYLES ===== */
.fhs-altman-container {
    max-width: 1200px;
}

.fhs-altman-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.fhs-altman-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.fhs-altman-score-display {
    text-align: center;
}

.fhs-altman-score {
    font-size: 3rem;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
    color: #1f2937;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.fhs-altman-status {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
}

/* ===== COMPONENTS ===== */
.fhs-altman-components {
    margin-bottom: 2.5rem;
}

.fhs-altman-components h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.fhs-components-chart {
    background: white;
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-components-table {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-components-table table {
    width: 100%;
    border-collapse: collapse;
}

.fhs-components-table th {
    background: #f9fafb;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

.fhs-components-table td {
    padding: 1rem;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
}

.fhs-components-table tr:hover {
    background: #f9fafb;
}

/* ===== RISK ZONES ===== */
.fhs-altman-interpretation h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.fhs-risk-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.fhs-risk-zone {
    background: white;
    border-radius: 6px;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #e5e7eb;
    text-align: center;
    transition: all 0.2s ease;
}

.fhs-zone-safe { border-left-color: #10b981; }
.fhs-zone-gray { border-left-color: #f59e0b; }
.fhs-zone-distress { border-left-color: #ef4444; }

.fhs-risk-zone.active {
    border-color: #3b82f6;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.fhs-zone-label {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.fhs-zone-range {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
}

.fhs-zone-description {
    font-size: 0.8125rem;
    color: #9ca3af;
}

.fhs-recommendation {
    background: #eff6ff;
    border: 1px solid #0ea5e9;
    border-radius: 6px;
    padding: 1.25rem;
    color: #0c4a6e;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== PIOTROSKI TAB STYLES ===== */
.fhs-piotroski-container {
    max-width: 1200px;
}

.fhs-piotroski-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.fhs-piotroski-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.fhs-piotroski-score-display {
    text-align: center;
}

.fhs-piotroski-score {
    font-size: 3rem;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
    color: #3b82f6;
    line-height: 1;
}

.fhs-piotroski-percentage {
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
    margin-bottom: 0.5rem;
}

.fhs-piotroski-status {
    font-size: 1.125rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 1.25rem;
}

/* ===== BREAKDOWN ===== */
.fhs-piotroski-breakdown {
    margin-bottom: 2.5rem;
}

.fhs-piotroski-breakdown h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.fhs-breakdown-chart {
    background: white;
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-breakdown-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.fhs-breakdown-item {
    background: white;
    border-radius: 6px;
    padding: 1.25rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-breakdown-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.fhs-breakdown-score {
    font-size: 2rem;
    font-weight: 400;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Consolas', monospace;
    font-variant-numeric: tabular-nums;
    color: #3b82f6;
}

/* ===== CRITERIA ===== */
.fhs-piotroski-criteria h4 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.5rem 0;
}

.fhs-criteria-groups {
    display: grid;
    gap: 1.5rem;
}

.fhs-criteria-group {
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-criteria-group h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
}

.fhs-criteria-list {
    display: grid;
    gap: 0.75rem;
}

.fhs-criteria-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.fhs-criteria-item.pass {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.fhs-criteria-item.fail {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.fhs-criteria-icon {
    font-size: 1.125rem;
}

.fhs-criteria-text {
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1f2937;
}

/* ===== METRICS TAB STYLES ===== */
.fhs-metrics-container {
    display: grid;
    gap: 2.5rem;
}

.fhs-metrics-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.fhs-metrics-category {
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-metrics-category h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.fhs-metrics-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.fhs-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.fhs-metric-row:last-child {
    border-bottom: none;
}

.fhs-metric-name {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.fhs-metrics-visualization {
    grid-column: 1 / -1;
    background: white;
    border-radius: 6px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.fhs-metrics-visualization h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
}

/* ===== INSIGHTS TAB STYLES ===== */
.fhs-insights-container {
    max-width: 1000px;
}

.fhs-insights-summary {
    background: #f9fafb;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.fhs-insights-summary h3 {
    font-size: 1.375rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.75rem 0;
}

.fhs-insights-summary p {
    color: #374151;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.fhs-no-insights {
    text-align: center;
    padding: 3.75rem 1.25rem;
    background: #f0fdf4;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
}

.fhs-no-insights h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #166534;
    margin: 0 0 1rem 0;
}

.fhs-no-insights p {
    font-size: 1.0625rem;
    color: #15803d;
    line-height: 1.6;
    margin: 0;
}

.fhs-insights-category {
    margin-bottom: 2rem;
}

.fhs-insights-category h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.fhs-insights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fhs-insight-item {
    background: white;
    border-radius: 6px;
    padding: 1.25rem;
    border-left: 3px solid #e5e7eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.fhs-insight-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.fhs-severity-high {
    border-left-color: #ef4444;
    background: #fef2f2;
}

.fhs-severity-medium {
    border-left-color: #f59e0b;
    background: #fef3c7;
}

.fhs-severity-positive {
    border-left-color: #10b981;
    background: #f0fdf4;
}

.fhs-insight-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.fhs-insight-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1f2937;
}

.fhs-insight-priority {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.fhs-insight-description {
    color: #6b7280;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.fhs-insight-recommendation {
    color: #1f2937;
    font-size: 0.9375rem;
    line-height: 1.5;
    background: rgba(59, 130, 246, 0.05);
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

/* ===== ERROR STATE ===== */
.fhs-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    padding: 1.25rem;
    color: #991b1b;
    font-size: 1rem;
    text-align: center;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .fhs-overall-dashboard {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        text-align: center;
    }

    .fhs-overview-grid {
        grid-template-columns: 1fr;
    }

    .fhs-metrics-categories {
        grid-template-columns: 1fr;
    }

    .fhs-risk-zones {
        grid-template-columns: 1fr;
    }

    .fhs-breakdown-summary {
        grid-template-columns: 1fr;
    }

    .fhs-component-breakdown {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .fhs-container {
        margin: 0.625rem;
        border-radius: 6px;
    }

    .fhs-header {
        padding: 1.5rem 1.25rem;
    }

    .fhs-title {
        font-size: 1.5rem;
    }

    .fhs-tab-pane {
        padding: 1.25rem;
    }

    .fhs-altman-header,
    .fhs-piotroski-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
    }

    .fhs-metrics-grid {
        grid-template-columns: 1fr;
    }

    .fhs-gauge-score {
        font-size: 2.5rem;
    }

    .fhs-altman-score,
    .fhs-piotroski-score {
        font-size: 2.5rem;
    }

    .fhs-card-score {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fhs-header {
        padding: 1.25rem 1rem;
    }

    .fhs-title {
        font-size: 1.375rem;
    }

    .fhs-tab-pane {
        padding: 1rem;
    }

    .fhs-tab-btn {
        padding: 1rem;
        font-size: 0.875rem;
    }

    .fhs-overview-grid {
        gap: 1.5rem;
    }

    .fhs-score-card {
        padding: 1.25rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .fhs-container {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #d1d5db;
    }

    .fhs-nav-tabs {
        display: none;
    }

    .fhs-tab-pane {
        display: block !important;
        page-break-inside: avoid;
    }

    .fhs-header {
        background: #3b82f6 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .fhs-score-card,
    .fhs-metrics-overview,
    .fhs-trend-chart,
    .fhs-components-chart,
    .fhs-components-table,
    .fhs-risk-zone,
    .fhs-breakdown-chart,
    .fhs-breakdown-item,
    .fhs-criteria-group,
    .fhs-metrics-category,
    .fhs-metrics-visualization,
    .fhs-insight-item {
        border: 1px solid #d1d5db;
        page-break-inside: avoid;
    }

    .fhs-score-card:hover,
    .fhs-metric-item:hover,
    .fhs-insight-item:hover {
        box-shadow: none;
    }
}

/* ===== ACCESSIBILITY ===== */
.fhs-tab-btn:focus,
.fhs-component:focus-within,
.fhs-metric-item:focus-within,
.fhs-risk-zone:focus-within,
.fhs-criteria-item:focus-within {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
