/* Status Page Accuracy Ratings */

.page-subtitle { color: var(--text-secondary); font-size: 1rem; line-height: 1.6; margin-bottom: 32px; max-width: 700px; }

/* Grade Scale */
.grade-scale { display: flex; gap: 2px; margin-bottom: 24px; border-radius: 8px; overflow: hidden; }
.grade-scale-item { flex: 1; padding: 12px 8px; text-align: center; font-size: 0.82rem; }
.grade-scale-item strong { display: block; font-size: 1.1rem; margin-bottom: 2px; }
.grade-scale-item span { font-size: 0.72rem; opacity: 0.8; }
.grade-a { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.grade-b { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.grade-c { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.grade-d { background: rgba(249, 115, 22, 0.15); color: #F97316; }
.grade-f { background: rgba(239, 68, 68, 0.15); color: #EF4444; }

/* Grade Distribution */
.grade-dist { display: flex; gap: 10px; margin-bottom: 28px; }
.grade-dist-item {
    flex: 1; display: flex; align-items: center; gap: 10px;
    padding: 12px 16px; border-radius: 8px; border: 1px solid var(--border-color);
    background: var(--bg-secondary);
}
.grade-dist-badge {
    width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-size: 0.88rem; font-weight: 800; flex-shrink: 0;
}
.grade-dist-info { display: flex; flex-direction: column; }
.grade-dist-count { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.grade-dist-label { font-size: 0.68rem; color: var(--text-tertiary); }

/* Table */
.accuracy-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.accuracy-table thead th {
    text-align: left; padding: 10px 12px; font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-tertiary);
    border-bottom: 1px solid var(--border-color); cursor: pointer; user-select: none;
}
.accuracy-table thead th:hover { color: var(--text-secondary); }
.accuracy-table tbody td {
    padding: 12px; font-size: 0.88rem; border-bottom: 1px solid var(--border-subtle, var(--border-color));
    vertical-align: middle;
}
.accuracy-table tbody tr:hover td { background: var(--bg-tertiary); }

/* Grade Badge */
.accuracy-grade {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 800;
}
.accuracy-grade.grade-a { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.accuracy-grade.grade-b { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.accuracy-grade.grade-c { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.accuracy-grade.grade-d { background: rgba(249, 115, 22, 0.15); color: #F97316; }
.accuracy-grade.grade-f { background: rgba(239, 68, 68, 0.15); color: #EF4444; }

/* Responsive */
@media (max-width: 768px) {
    .grade-scale { flex-wrap: wrap; }
    .grade-scale-item { min-width: 60px; }
    .accuracy-table { font-size: 0.82rem; }
    .accuracy-table thead th, .accuracy-table tbody td { padding: 8px; }
}
