2026-02-02 20:34:35 +00:00
|
|
|
.container {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Header */
|
|
|
|
|
.header {
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header h1 {
|
2026-02-03 10:11:23 +00:00
|
|
|
font-size: 2.25rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
font-weight: 700;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
margin-bottom: 0.5rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
font-family: var(--font-playfair), 'Playfair Display', serif;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subtitle {
|
|
|
|
|
font-size: 1rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
margin: 0;
|
2026-02-03 10:11:23 +00:00
|
|
|
line-height: 1.6;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Filters */
|
|
|
|
|
.filters {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
border-radius: 12px;
|
2026-02-02 20:34:35 +00:00
|
|
|
padding: 1.5rem;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
gap: 1.5rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
box-shadow: var(--shadow-soft, 0 2px 8px rgba(26, 22, 18, 0.06));
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filterGroup {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.75rem;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 200px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filterLabel {
|
|
|
|
|
font-size: 0.9375rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
font-weight: 600;
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filterSelect {
|
|
|
|
|
flex: 1;
|
|
|
|
|
padding: 0.625rem 1rem;
|
|
|
|
|
font-size: 0.9375rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
cursor: pointer;
|
2026-02-03 10:11:23 +00:00
|
|
|
transition: all 0.2s ease;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filterSelect:hover {
|
2026-02-03 10:11:23 +00:00
|
|
|
border-color: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filterSelect:focus {
|
|
|
|
|
outline: none;
|
2026-02-03 10:11:23 +00:00
|
|
|
border-color: var(--accent-coral, #e07256);
|
|
|
|
|
box-shadow: 0 0 0 3px rgba(224, 114, 86, 0.15);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-04 11:50:13 +00:00
|
|
|
.filterSelect optgroup {
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
padding: 0.5rem 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filterSelect option {
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
|
|
|
|
padding: 0.375rem 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-02 20:34:35 +00:00
|
|
|
/* Rankings Section */
|
|
|
|
|
.rankingsSection {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--bg-card, white);
|
|
|
|
|
border: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
border-radius: 12px;
|
2026-02-02 20:34:35 +00:00
|
|
|
padding: 2rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
box-shadow: var(--shadow-soft, 0 2px 8px rgba(26, 22, 18, 0.06));
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tableWrapper {
|
|
|
|
|
overflow-x: auto;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsTable {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-collapse: collapse;
|
|
|
|
|
font-size: 0.9375rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsTable thead {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--bg-secondary, #f3ede4);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsTable th {
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
text-align: left;
|
|
|
|
|
font-weight: 600;
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
|
|
|
|
border-bottom: 2px solid var(--border-color, #e5dfd5);
|
2026-02-02 20:34:35 +00:00
|
|
|
white-space: nowrap;
|
2026-02-03 10:11:23 +00:00
|
|
|
text-transform: uppercase;
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
letter-spacing: 0.05em;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankHeader {
|
|
|
|
|
width: 80px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.schoolHeader {
|
|
|
|
|
min-width: 250px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.areaHeader {
|
|
|
|
|
min-width: 150px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.typeHeader {
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.valueHeader {
|
|
|
|
|
width: 120px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actionHeader {
|
|
|
|
|
width: 120px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsTable td {
|
|
|
|
|
padding: 1rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsTable tbody tr:last-child td {
|
|
|
|
|
border-bottom: none;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-03 14:12:48 +00:00
|
|
|
/* Alternating row backgrounds for visual rhythm */
|
|
|
|
|
.rankingsTable tbody tr:nth-child(even) {
|
|
|
|
|
background: rgba(243, 237, 228, 0.5);
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-02 20:34:35 +00:00
|
|
|
.rankingsTable tbody tr:hover {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--bg-secondary, #f3ede4);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-03 10:11:23 +00:00
|
|
|
/* Top 3 Highlighting with Gold */
|
2026-02-02 20:34:35 +00:00
|
|
|
.rank1 {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: linear-gradient(90deg, rgba(201, 162, 39, 0.15) 0%, transparent 100%) !important;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rank2 {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: linear-gradient(90deg, rgba(192, 192, 192, 0.15) 0%, transparent 100%) !important;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rank3 {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: linear-gradient(90deg, rgba(205, 127, 50, 0.15) 0%, transparent 100%) !important;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankCell {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 0.5rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
font-weight: 700;
|
|
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
2026-02-03 14:12:48 +00:00
|
|
|
/* Styled rank badges for top 3 */
|
|
|
|
|
.rankBadge {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 36px;
|
|
|
|
|
height: 36px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: white;
|
|
|
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankBadge::before {
|
|
|
|
|
content: '';
|
|
|
|
|
position: absolute;
|
|
|
|
|
inset: -2px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 2px solid transparent;
|
|
|
|
|
background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent) border-box;
|
|
|
|
|
mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
|
|
|
|
|
mask-composite: exclude;
|
|
|
|
|
-webkit-mask-composite: xor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankBadge1 {
|
|
|
|
|
background: linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%);
|
|
|
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankBadge2 {
|
|
|
|
|
background: linear-gradient(135deg, #8c8c8c 0%, #c0c0c0 50%, #8c8c8c 100%);
|
|
|
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankBadge3 {
|
|
|
|
|
background: linear-gradient(135deg, #a5673f 0%, #cd7f32 50%, #a5673f 100%);
|
|
|
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankNumber {
|
|
|
|
|
font-size: 1rem;
|
2026-02-03 14:12:48 +00:00
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.schoolCell {
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.schoolLink {
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-primary, #1a1612);
|
2026-02-02 20:34:35 +00:00
|
|
|
text-decoration: none;
|
2026-02-03 10:11:23 +00:00
|
|
|
transition: color 0.2s ease;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.schoolLink:hover {
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.areaCell,
|
|
|
|
|
.typeCell {
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.valueCell {
|
|
|
|
|
text-align: center;
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.valueCell strong {
|
2026-02-03 10:11:23 +00:00
|
|
|
color: var(--accent-teal, #2d7d7d);
|
|
|
|
|
font-weight: 700;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.actionCell {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.addButton {
|
2026-03-24 09:15:33 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-02-02 20:34:35 +00:00
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
font-size: 0.875rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
font-weight: 600;
|
2026-03-24 09:15:33 +00:00
|
|
|
border: 1px solid transparent;
|
2026-03-23 22:53:09 +00:00
|
|
|
border-radius: 6px;
|
2026-02-02 20:34:35 +00:00
|
|
|
cursor: pointer;
|
2026-02-03 10:11:23 +00:00
|
|
|
transition: all 0.2s ease;
|
|
|
|
|
background: var(--accent-coral, #e07256);
|
2026-02-02 20:34:35 +00:00
|
|
|
color: white;
|
2026-03-24 09:15:33 +00:00
|
|
|
box-sizing: border-box;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.addButton:hover:not(:disabled) {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--accent-coral-dark, #c45a3f);
|
|
|
|
|
transform: translateY(-1px);
|
|
|
|
|
box-shadow: 0 4px 12px rgba(224, 114, 86, 0.3);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.addButton:disabled {
|
2026-02-03 10:11:23 +00:00
|
|
|
background: var(--bg-secondary, #f3ede4);
|
|
|
|
|
color: var(--text-muted, #8a847a);
|
2026-02-02 20:34:35 +00:00
|
|
|
cursor: not-allowed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* No Results */
|
|
|
|
|
.noResults {
|
|
|
|
|
text-align: center;
|
2026-02-03 10:11:23 +00:00
|
|
|
padding: 4rem 2rem;
|
|
|
|
|
color: var(--text-secondary, #5c564d);
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.noResults p {
|
|
|
|
|
font-size: 1rem;
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Responsive Design */
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
.header h1 {
|
2026-02-03 10:11:23 +00:00
|
|
|
font-size: 1.75rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filters {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
padding: 1rem;
|
|
|
|
|
border-radius: 8px;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.filterGroup {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: stretch;
|
|
|
|
|
min-width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsSection {
|
|
|
|
|
padding: 1rem;
|
2026-02-03 10:11:23 +00:00
|
|
|
border-radius: 8px;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsTable {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.rankingsTable th,
|
|
|
|
|
.rankingsTable td {
|
|
|
|
|
padding: 0.75rem 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-03 14:12:48 +00:00
|
|
|
.rankBadge {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
font-size: 0.875rem;
|
2026-02-02 20:34:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.schoolHeader {
|
|
|
|
|
min-width: 180px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.areaHeader,
|
|
|
|
|
.typeHeader {
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-23 21:31:28 +00:00
|
|
|
|
|
|
|
|
.limitNote {
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.metricDescription {
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
color: var(--text-secondary);
|
|
|
|
|
margin: -1rem 0 1.5rem;
|
|
|
|
|
max-width: 700px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progressHint {
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
color: var(--text-muted);
|
|
|
|
|
margin: -1rem 0 1.5rem;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.viewButton {
|
2026-03-24 09:15:33 +00:00
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
2026-03-23 22:53:09 +00:00
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
|
font-size: 0.875rem;
|
|
|
|
|
font-weight: 500;
|
2026-03-23 21:31:28 +00:00
|
|
|
color: var(--text-secondary);
|
|
|
|
|
border: 1px solid var(--border-color, #e0ddd8);
|
2026-03-23 22:53:09 +00:00
|
|
|
border-radius: 6px;
|
2026-03-23 21:31:28 +00:00
|
|
|
text-decoration: none;
|
|
|
|
|
margin-right: 0.375rem;
|
|
|
|
|
transition: all var(--transition, 0.2s ease);
|
2026-03-24 09:15:33 +00:00
|
|
|
box-sizing: border-box;
|
2026-03-23 21:31:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.viewButton:hover {
|
|
|
|
|
background: var(--bg-secondary);
|
|
|
|
|
color: var(--text-primary);
|
|
|
|
|
}
|