.main-container {
    max-width: 80%;
    margin: 0 auto;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.chart-wrapper {
    margin-bottom: 40px;
    position: relative;
}

.chart-wrapper:last-child {
    margin-bottom: 0;
}

.chart-wrapper h2 {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.highlight-count {
    color: #03c4ff;
}

.stats-title {
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--accent-colour);
}

.stats-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stats-color {
    width: 20px;
    height: 20px;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}

.stats-label {
    font-size: 16px;
    color: var(--text-primary);
}

