diff --git a/templates/modern_player_stats.html b/templates/modern_player_stats.html index 52ae65e..ba67c3c 100644 --- a/templates/modern_player_stats.html +++ b/templates/modern_player_stats.html @@ -191,20 +191,26 @@ /* Chart Info Header */ .chart-info { - display: flex; - justify-content: space-between; - align-items: center; margin-bottom: 15px; - padding: 12px; - background: #f8f9fa; - border-radius: 8px; - border: 1px solid #e9ecef; + } + + .chart-info h3 { + margin: 0 0 15px 0; + color: #333; + font-size: 1.1rem; + font-weight: 600; } .chart-stats { display: flex; + justify-content: space-around; + align-items: center; gap: 20px; font-size: 0.85rem; + padding: 12px; + background: #f8f9fa; + border-radius: 8px; + border: 1px solid #e9ecef; } .chart-stat { @@ -361,6 +367,36 @@ border: 1px dashed #dee2e6; } + /* Accuracy and Performance Sections */ + .accuracy-section { + background: #f8f9fa; + border-radius: 12px; + padding: 20px; + margin-bottom: 25px; + border: 1px solid #e9ecef; + } + + .accuracy-section h3 { + margin: 0 0 15px 0; + color: #333; + font-size: 1.1rem; + font-weight: 600; + } + + .performance-section { + background: #f8f9fa; + border-radius: 12px; + padding: 20px; + border: 1px solid #e9ecef; + } + + .performance-section h3 { + margin: 0 0 15px 0; + color: #333; + font-size: 1.1rem; + font-weight: 600; + } + /* Bottom Section - History */ .bottom-section { display: grid; @@ -755,41 +791,25 @@