/* Provider Economics Dashboard - Static Version Styles */

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --card-hover-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    background-color: #f8fafc;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.navbar {
    background: var(--primary-gradient);
    box-shadow: var(--card-shadow);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.kpi-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
}

.kpi-card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-2px);
}

.kpi-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpi-label {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.kpi-icon.members { background: rgba(102, 126, 234, 0.1); color: #667eea; }
.kpi-icon.vbc { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.kpi-icon.care { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.kpi-icon.practices { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.kpi-icon.pmpm { background: rgba(236, 72, 153, 0.1); color: #ec4899; }

.summary-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: none;
}

.summary-card .card-header {
    background: transparent;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e293b;
}

.report-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-decoration: none;
    color: #1e293b;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.report-link:hover {
    border-color: #667eea;
    box-shadow: var(--card-hover-shadow);
    color: #667eea;
}

.report-link .icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
}

.report-link.run .icon { background: rgba(102, 126, 234, 0.1); color: #667eea; }
.report-link.dq .icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.report-link.diff .icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.report-link.anomaly .icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.badge-pass { background-color: #10b981; }
.badge-fail { background-color: #ef4444; }
.badge-warn { background-color: #f59e0b; }
.badge-high { background-color: #ef4444; }
.badge-medium { background-color: #f59e0b; }
.badge-low { background-color: #3b82f6; }

.run-info {
    background: white;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: var(--card-shadow);
}

.run-info .run-id {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    color: #667eea;
}

.table-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.table-modern thead {
    background: #f1f5f9;
}

.table-modern th {
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border: none;
}

.table-modern td {
    vertical-align: middle;
    border-color: #e2e8f0;
}

.delta-positive { color: #10b981; }
.delta-negative { color: #ef4444; }

.page-header {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Static-specific styles */
.static-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}
