Files
Orchestrator/dhive/Jury-Voting/src/index.css
T
ankn a5f8fb49ab Migrate all repos into monorepo context folders
Bahn: aisupport, Analyse-O2C-C2S, awesome-bahn-mcp-servers, beam-mcp,
      Confluence_Bot, db-planet-mcp-server, O2C-Harness, project-audit,
      Projekt-KIQ-HP, teamlandkarte-mcp
Dhive: Jury-Voting
Privat: CV, NoteGraph (NOTE: NoteGraph needs complete redo after consolidation)
Shared: AI-Orchestrator, OrgMyLife, power_skills_and_more
Shared/references: symphony (read-only)

Bahn repos remain available as independent remotes - this monorepo
pulls them in via subtree, the originals are untouched.
2026-06-30 20:39:52 +02:00

1301 lines
29 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');
:root {
--bg-color: #0a0a0a;
--text-primary: #f0f0f0;
--text-secondary: #999999;
--accent-color: #00FF00;
--accent-color-rgb: 0, 255, 0;
--accent-gradient: linear-gradient(135deg, #00FF00, #00b300);
--glass-bg: rgba(25, 25, 25, 0.6);
--glass-border: rgba(255, 255, 255, 0.08);
}
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html, body {
height: 100%;
}
body {
background-color: var(--bg-color);
color: var(--text-primary);
font-family: 'Outfit', sans-serif;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root {
min-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 800;
letter-spacing: -0.02em;
}
a {
text-decoration: none;
color: inherit;
transition: color 0.3s ease;
}
a:hover {
color: var(--accent-color);
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.1);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.2);
}
/* Glass panel utility */
.glass-panel {
background: var(--glass-bg);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid var(--glass-border);
border-radius: 16px;
}
/* Page container */
.page-container {
max-width: 428px;
margin: 0 auto;
padding: 24px 16px;
min-height: 100vh;
position: relative;
}
/* Background mesh effect */
.background-mesh {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.04) 0%, transparent 50%),
radial-gradient(circle at 0% 0%, rgba(0, 255, 0, 0.02) 0%, transparent 40%),
radial-gradient(circle at 100% 100%, rgba(0, 255, 0, 0.02) 0%, transparent 40%);
pointer-events: none;
z-index: 0;
}
/* Text gradient */
.text-gradient {
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
/* ═══════════════════════════════════════════════════════════════════════
RESULTS VIEW (Beamer) — Full-screen, 1920×1080 landscape optimized
═══════════════════════════════════════════════════════════════════════ */
.results-view {
width: 100vw;
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
padding: 40px 60px;
position: relative;
background-color: var(--bg-color);
}
.results-bg-mesh {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 50% 30%, rgba(0, 255, 0, 0.06) 0%, transparent 50%),
radial-gradient(circle at 10% 80%, rgba(0, 255, 0, 0.03) 0%, transparent 40%),
radial-gradient(circle at 90% 90%, rgba(0, 255, 0, 0.03) 0%, transparent 40%);
pointer-events: none;
z-index: 0;
}
.results-connection {
position: absolute;
top: 20px;
right: 30px;
z-index: 10;
}
.connection-dot {
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
transition: background-color 0.3s ease;
}
.connection-dot.connected {
background-color: var(--accent-color);
box-shadow: 0 0 8px rgba(var(--accent-color-rgb), 0.6);
}
.connection-dot.disconnected {
background-color: #ff4444;
box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}
.results-header {
text-align: center;
margin-bottom: 30px;
z-index: 1;
}
.results-title {
font-size: 2.8rem;
font-weight: 800;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 8px;
}
.results-status {
font-size: 1.4rem;
color: var(--text-secondary);
font-weight: 300;
}
.results-main {
flex: 1;
overflow: hidden;
z-index: 1;
}
/* ═══════════════════════════════════════════════════════════════════════
RANKING TABLE — Beamer-optimized, large fonts, glassmorphism rows
═══════════════════════════════════════════════════════════════════════ */
.ranking-table {
max-width: 1200px;
margin: 0 auto;
width: 100%;
}
.ranking-empty {
text-align: center;
font-size: 1.6rem;
color: var(--text-secondary);
padding: 80px 0;
}
.ranking-header {
display: grid;
grid-template-columns: 100px 1fr 160px 120px;
padding: 12px 24px;
font-size: 1rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
font-weight: 600;
border-bottom: 1px solid var(--glass-border);
margin-bottom: 8px;
}
.ranking-rows {
display: flex;
flex-direction: column;
gap: 6px;
}
.ranking-row {
display: grid;
grid-template-columns: 100px 1fr 160px 120px;
align-items: center;
padding: 16px 24px;
transition: transform 0.6s ease, opacity 0.4s ease, box-shadow 0.3s ease;
}
.rank-number {
font-size: 2rem;
font-weight: 800;
}
.team-name {
font-size: 2rem;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.total-score {
font-size: 3rem;
font-weight: 800;
text-align: right;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.avg-score {
font-size: 1.6rem;
font-weight: 400;
color: var(--text-secondary);
text-align: right;
}
/* Top 3 highlight styles */
.ranking-row.rank-gold {
border: 1px solid rgba(255, 215, 0, 0.3);
box-shadow: 0 0 20px rgba(255, 215, 0, 0.15), inset 0 0 20px rgba(255, 215, 0, 0.05);
}
.ranking-row.rank-silver {
border: 1px solid rgba(192, 192, 192, 0.3);
box-shadow: 0 0 15px rgba(192, 192, 192, 0.1), inset 0 0 15px rgba(192, 192, 192, 0.03);
}
.ranking-row.rank-bronze {
border: 1px solid rgba(205, 127, 50, 0.3);
box-shadow: 0 0 15px rgba(205, 127, 50, 0.1), inset 0 0 15px rgba(205, 127, 50, 0.03);
}
/* ═══════════════════════════════════════════════════════════════════════
ADMIN PANEL
═══════════════════════════════════════════════════════════════════════ */
.admin-section {
padding: 20px;
margin-bottom: 16px;
}
.admin-section-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 16px;
color: var(--text-primary);
}
.admin-session-info {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 16px;
}
.session-status-row {
display: flex;
justify-content: space-between;
align-items: center;
}
.session-label {
color: var(--text-secondary);
font-size: 0.9rem;
}
.session-value {
font-size: 0.9rem;
color: var(--text-primary);
}
.session-badge {
padding: 4px 12px;
border-radius: 50px;
font-size: 0.8rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.session-badge.status-setup {
background: rgba(255, 255, 255, 0.1);
color: var(--text-secondary);
}
.session-badge.status-active {
background: rgba(0, 255, 0, 0.15);
color: var(--accent-color);
box-shadow: 0 0 8px rgba(var(--accent-color-rgb), 0.2);
}
.session-badge.status-ended {
background: rgba(255, 100, 100, 0.15);
color: #ff6b6b;
}
.admin-controls {
display: flex;
gap: 12px;
}
.admin-end-btn {
background: rgba(255, 60, 60, 0.15);
border: 1px solid rgba(255, 60, 60, 0.3);
color: #ff6b6b;
padding: 12px 24px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
}
.admin-end-btn:hover {
background: rgba(255, 60, 60, 0.25);
box-shadow: 0 0 12px rgba(255, 60, 60, 0.2);
}
/* Confirmation Dialog */
.admin-dialog-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 16px;
}
.admin-dialog {
padding: 24px;
max-width: 360px;
width: 100%;
text-align: center;
}
.admin-dialog h3 {
margin-bottom: 12px;
font-size: 1.2rem;
}
.admin-dialog-text {
color: var(--text-secondary);
font-size: 0.9rem;
margin-bottom: 20px;
}
.admin-warning {
background: rgba(255, 200, 0, 0.1);
border: 1px solid rgba(255, 200, 0, 0.3);
border-radius: 8px;
padding: 10px 14px;
color: #ffcc00;
font-size: 0.85rem;
margin-bottom: 12px;
text-align: left;
white-space: pre-line;
}
.admin-dialog-actions {
display: flex;
gap: 12px;
justify-content: center;
}
.admin-cancel-btn {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--glass-border);
color: var(--text-secondary);
padding: 10px 20px;
border-radius: 50px;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
}
.admin-cancel-btn:hover {
background: rgba(255, 255, 255, 0.1);
}
.admin-confirm-btn {
background: rgba(255, 60, 60, 0.2);
border: 1px solid rgba(255, 60, 60, 0.4);
color: #ff6b6b;
padding: 10px 20px;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.admin-confirm-btn:hover {
background: rgba(255, 60, 60, 0.35);
}
/* Export & Links */
.admin-actions-row {
display: flex;
flex-direction: column;
gap: 12px;
align-items: stretch;
}
.admin-link-btn {
display: block;
text-align: center;
padding: 12px 20px;
border-radius: 50px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--glass-border);
color: var(--text-primary);
font-size: 0.95rem;
transition: all 0.3s ease;
}
.admin-link-btn:hover {
background: rgba(255, 255, 255, 0.1);
color: var(--accent-color);
}
/* ═══════════════════════════════════════════════════════════════════════
PROGRESS MATRIX
═══════════════════════════════════════════════════════════════════════ */
.progress-matrix {
width: 100%;
}
.progress-title {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 12px;
}
.progress-loading {
color: var(--text-secondary);
font-size: 0.9rem;
padding: 16px;
}
.progress-complete-badge {
background: rgba(0, 255, 0, 0.1);
border: 1px solid rgba(0, 255, 0, 0.3);
border-radius: 8px;
padding: 8px 14px;
color: var(--accent-color);
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 16px;
text-align: center;
}
.progress-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.progress-item {
display: flex;
flex-direction: column;
gap: 6px;
}
.progress-item-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.progress-juror-name {
font-size: 0.9rem;
font-weight: 600;
color: var(--text-primary);
}
.progress-count {
font-size: 0.85rem;
color: var(--text-secondary);
}
.progress-count.complete {
color: var(--accent-color);
}
.progress-bar-track {
width: 100%;
height: 6px;
background: rgba(255, 255, 255, 0.06);
border-radius: 3px;
overflow: hidden;
}
.progress-bar-fill {
height: 100%;
background: rgba(255, 255, 255, 0.2);
border-radius: 3px;
transition: width 0.5s ease;
}
.progress-bar-fill.complete {
background: var(--accent-gradient);
box-shadow: 0 0 6px rgba(var(--accent-color-rgb), 0.3);
}
/* ═══════════════════════════════════════════════════════════════════════
PRIMARY BUTTON
═══════════════════════════════════════════════════════════════════════ */
.primary-button {
display: inline-block;
background: var(--accent-gradient);
color: #000;
padding: 14px 28px;
border-radius: 50px;
font-weight: 800;
font-size: 1.1rem;
font-family: inherit;
box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
cursor: pointer;
}
.primary-button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.5);
}
.primary-button:focus-visible {
outline: 2px solid var(--accent-color);
outline-offset: 3px;
}
/* ═══════════════════════════════════════════════════════════════════════
GLASS PANEL HOVER EFFECTS
═══════════════════════════════════════════════════════════════════════ */
.glass-panel {
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.glass-panel:hover {
border-color: rgba(255, 255, 255, 0.12);
box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.04);
}
/* ═══════════════════════════════════════════════════════════════════════
SLIDER CUSTOM STYLING
═══════════════════════════════════════════════════════════════════════ */
input[type="range"] {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 6px;
background: rgba(255, 255, 255, 0.1);
border-radius: 3px;
outline: none;
cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
height: 6px;
background: rgba(255, 255, 255, 0.1);
border-radius: 3px;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--accent-gradient);
box-shadow: 0 0 8px rgba(var(--accent-color-rgb), 0.4);
margin-top: -9px;
cursor: pointer;
transition: box-shadow 0.2s ease, transform 0.2s ease;
}
input[type="range"]::-webkit-slider-thumb:hover {
box-shadow: 0 0 14px rgba(var(--accent-color-rgb), 0.6);
transform: scale(1.1);
}
input[type="range"]::-moz-range-track {
height: 6px;
background: rgba(255, 255, 255, 0.1);
border-radius: 3px;
border: none;
}
input[type="range"]::-moz-range-thumb {
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--accent-gradient);
box-shadow: 0 0 8px rgba(var(--accent-color-rgb), 0.4);
border: none;
cursor: pointer;
}
input[type="range"]:focus-visible::-webkit-slider-thumb {
outline: 2px solid var(--accent-color);
outline-offset: 2px;
}
/* ═══════════════════════════════════════════════════════════════════════
ANIMATIONS
═══════════════════════════════════════════════════════════════════════ */
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}
.results-status.voting-active {
animation: pulse 2s ease-in-out infinite;
}
/* ═══════════════════════════════════════════════════════════════════════
FOCUS STYLES (Accessibility)
═══════════════════════════════════════════════════════════════════════ */
button:focus-visible,
a:focus-visible {
outline: 2px solid var(--accent-color);
outline-offset: 2px;
}
.admin-cancel-btn:focus-visible,
.admin-confirm-btn:focus-visible,
.admin-end-btn:focus-visible,
.admin-link-btn:focus-visible {
outline: 2px solid var(--accent-color);
outline-offset: 2px;
}
/* ═══════════════════════════════════════════════════════════════════════
LOGOUT BUTTON
═══════════════════════════════════════════════════════════════════════ */
.logout-btn {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
color: var(--text-secondary);
padding: 6px 16px;
border-radius: 50px;
font-size: 0.82rem;
font-family: inherit;
cursor: pointer;
transition: all 0.3s ease;
}
.logout-btn:hover {
background: rgba(255, 60, 60, 0.1);
color: #ff6b6b;
border-color: rgba(255, 60, 60, 0.2);
}
/* ═══════════════════════════════════════════════════════════════════════
RESULTS VIEW — Scrollable variant
═══════════════════════════════════════════════════════════════════════ */
.results-view--scrollable {
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
}
.results-main--scrollable {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
padding-bottom: 40px;
}
/* Navigation tabs */
.results-nav {
display: flex;
gap: 8px;
justify-content: center;
margin-top: 12px;
}
.results-nav-link {
padding: 6px 20px;
border-radius: 50px;
font-size: 0.9rem;
font-weight: 600;
color: var(--text-secondary);
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--glass-border);
transition: all 0.3s ease;
}
.results-nav-link:hover {
background: rgba(255, 255, 255, 0.08);
color: var(--text-primary);
}
.results-nav-link.active {
background: rgba(var(--accent-color-rgb), 0.12);
color: var(--accent-color);
border-color: rgba(var(--accent-color-rgb), 0.3);
}
/* Sticky header that shrinks on scroll */
.results-header--sticky {
position: sticky;
top: 0;
z-index: 10;
background: var(--bg-color);
padding-bottom: 16px;
transition: all 0.4s ease;
}
.results-header--compact {
background: rgba(10, 10, 10, 0.85);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
padding-bottom: 8px;
margin-bottom: 8px;
}
.results-header--compact .results-title {
font-size: 1.4rem;
margin-bottom: 0;
}
/* Header extras (status + nav) — smooth fade out */
.results-header-extras {
overflow: hidden;
max-height: 80px;
opacity: 1;
transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
margin-top: 4px;
}
.results-header--compact .results-header-extras {
max-height: 0;
opacity: 0;
margin-top: 0;
}
/* Ranking with stddev column */
.ranking-header--with-stddev {
grid-template-columns: 80px 1fr 120px 80px 80px;
}
.ranking-row--clickable {
cursor: pointer;
grid-template-columns: 80px 1fr 120px 80px 80px;
}
.ranking-header--with-stddev .ranking-col-total,
.ranking-header--with-stddev .ranking-col-avg,
.ranking-header--with-stddev .ranking-col-stddev {
text-align: right;
}
.ranking-row--clickable:hover {
border-color: rgba(var(--accent-color-rgb), 0.3);
box-shadow: 0 0 20px rgba(var(--accent-color-rgb), 0.1);
transform: translateX(4px);
}
.ranking-row--expanded {
border-color: rgba(var(--accent-color-rgb), 0.3);
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
/* Expand indicator arrow */
.expand-indicator {
font-size: 0.7rem;
margin-left: 8px;
opacity: 0.5;
vertical-align: middle;
}
.expand-indicator-sm {
font-size: 0.6rem;
opacity: 0.5;
}
/* Expandable detail section below a team row */
.ranking-item {
display: flex;
flex-direction: column;
}
.ranking-expand {
padding: 20px 24px;
margin-top: -1px;
border-top-left-radius: 0;
border-top-right-radius: 0;
border-top: none;
border-color: rgba(var(--accent-color-rgb), 0.2);
animation: expandIn 0.25s ease;
}
@keyframes expandIn {
from { opacity: 0; max-height: 0; padding-top: 0; padding-bottom: 0; }
to { opacity: 1; max-height: 400px; padding-top: 20px; padding-bottom: 20px; }
}
.expand-stats {
display: flex;
gap: 24px;
margin-bottom: 16px;
}
.expand-stat {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
}
.expand-stat-label {
font-size: 0.7rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.expand-stat-value {
font-size: 1rem;
font-weight: 600;
color: var(--text-primary);
}
.expand-empty {
color: var(--text-secondary);
font-size: 0.9rem;
padding: 8px 0;
}
/* Detail table expand row */
.detail-expand-row {
background: rgba(var(--accent-color-rgb), 0.03);
}
.detail-expand-cell {
padding: 16px 24px;
}
.ranking-col-stddev {
text-align: right;
}
.stddev-score {
font-size: 1.1rem;
font-weight: 400;
color: var(--text-secondary);
opacity: 0.7;
}
/* ═══════════════════════════════════════════════════════════════════════
TEAM DETAIL MODAL
═══════════════════════════════════════════════════════════════════════ */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(4px);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 24px;
animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
.modal-content {
max-width: 700px;
width: 100%;
padding: 32px;
animation: slideUp 0.3s ease;
}
@keyframes slideUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.modal-title {
font-size: 1.8rem;
font-weight: 800;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.modal-close {
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--glass-border);
color: var(--text-secondary);
width: 36px;
height: 36px;
border-radius: 50%;
font-size: 1.1rem;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.modal-close:hover {
background: rgba(255, 60, 60, 0.15);
color: #ff6b6b;
border-color: rgba(255, 60, 60, 0.3);
}
.modal-summary {
display: flex;
gap: 24px;
margin-bottom: 28px;
padding: 16px;
background: rgba(255, 255, 255, 0.03);
border-radius: 12px;
}
.modal-stat {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
}
.modal-stat-label {
font-size: 0.75rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.modal-stat-value {
font-size: 1.4rem;
font-weight: 800;
color: var(--text-primary);
}
.modal-empty {
color: var(--text-secondary);
text-align: center;
padding: 24px;
}
/* Histograms — vertical bars per juror score, 5 categories side by side */
.histograms {
display: flex;
gap: 12px;
justify-content: space-between;
align-items: flex-end;
width: 100%;
}
.histogram {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
min-width: 0;
}
.histogram-bars {
display: flex;
align-items: flex-end;
gap: 3px;
height: 80px;
width: 100%;
justify-content: center;
}
.histogram-bar-wrapper {
flex: 1;
max-width: 20px;
height: 100%;
display: flex;
align-items: flex-end;
justify-content: center;
}
.histogram-bar {
width: 100%;
background: var(--accent-gradient);
border-radius: 3px 3px 0 0;
display: flex;
align-items: flex-start;
justify-content: center;
min-height: 4px;
position: relative;
box-shadow: 0 0 6px rgba(var(--accent-color-rgb), 0.2);
transition: height 0.4s ease;
}
.histogram-bar-label {
font-size: 0.6rem;
font-weight: 800;
color: #000;
position: absolute;
top: 2px;
line-height: 1;
}
.histogram-footer {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
margin-top: 6px;
width: 100%;
}
.histogram-name {
font-size: 0.65rem;
font-weight: 600;
color: var(--text-secondary);
text-align: center;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
}
.histogram-mean {
font-size: 0.7rem;
font-weight: 800;
color: var(--text-primary);
}
/* Legacy bar chart (kept for detail page) */
.modal-chart {
display: flex;
flex-direction: column;
gap: 16px;
}
.chart-row {
display: flex;
align-items: center;
gap: 12px;
}
.chart-label {
width: 140px;
font-size: 0.9rem;
font-weight: 600;
color: var(--text-secondary);
text-align: right;
flex-shrink: 0;
}
.chart-bar-container {
flex: 1;
display: flex;
align-items: center;
gap: 8px;
height: 36px;
}
.chart-bar {
height: 100%;
background: var(--accent-gradient);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 10px;
min-width: 40px;
transition: width 0.5s ease;
box-shadow: 0 0 12px rgba(var(--accent-color-rgb), 0.2);
}
.chart-bar-value {
font-size: 0.85rem;
font-weight: 800;
color: #000;
}
.chart-stddev {
font-size: 0.8rem;
color: var(--text-secondary);
opacity: 0.7;
white-space: nowrap;
}
/* ═══════════════════════════════════════════════════════════════════════
DETAIL TABLE (Category breakdown page)
═══════════════════════════════════════════════════════════════════════ */
.detail-table-wrapper {
max-width: 1400px;
margin: 0 auto;
width: 100%;
overflow-x: auto;
}
.detail-table {
width: 100%;
border-collapse: separate;
border-spacing: 0 4px;
}
.detail-th {
padding: 10px 12px;
font-size: 0.85rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.04em;
font-weight: 600;
text-align: center;
border-bottom: 1px solid var(--glass-border);
white-space: nowrap;
}
.detail-th-rank {
width: 50px;
text-align: center;
}
.detail-th-team {
text-align: left;
min-width: 180px;
}
.detail-th-criterion {
min-width: 110px;
}
.detail-th-total,
.detail-th-avg,
.detail-th-stddev {
min-width: 80px;
}
.detail-row {
background: var(--glass-bg);
border-radius: 12px;
transition: all 0.3s ease;
}
.detail-row--clickable {
cursor: pointer;
}
.detail-row--clickable:hover {
background: rgba(var(--accent-color-rgb), 0.05);
}
.detail-row.rank-gold {
box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.25);
}
.detail-row.rank-silver {
box-shadow: inset 0 0 0 1px rgba(192, 192, 192, 0.2);
}
.detail-row.rank-bronze {
box-shadow: inset 0 0 0 1px rgba(205, 127, 50, 0.2);
}
.detail-td {
padding: 12px;
text-align: center;
vertical-align: middle;
}
.detail-td-rank {
font-size: 1.3rem;
font-weight: 800;
text-align: center;
}
.detail-td-team {
text-align: left;
font-size: 1rem;
font-weight: 600;
white-space: nowrap;
}
.detail-td-total {
font-size: 1.2rem;
font-weight: 800;
background: var(--accent-gradient);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.detail-td-avg {
font-size: 1rem;
color: var(--text-secondary);
}
.detail-td-stddev {
font-size: 0.9rem;
color: var(--text-secondary);
opacity: 0.7;
}
.detail-cell-content {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
}
.detail-mean {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-primary);
}
.detail-stddev {
font-size: 0.75rem;
color: var(--text-secondary);
opacity: 0.6;
}
.detail-empty {
color: var(--text-secondary);
opacity: 0.4;
}