body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    color: #333;
}

.dashboard-header {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    text-align: center;
}

.dashboard-header h1 {
    margin: 0 0 20px 0;
    font-size: 28px;
}

.dashboard-header h2 {
    margin: 20px 0 0 0;
    font-size: 20px;
    color: #666;
}

.athlete-selector {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.athlete-selector label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.athlete-selector select {
    padding: 8px 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    min-width: 200px;
}

.athlete-selector select:hover {
    border-color: #999;
}

.athlete-selector select:focus {
    outline: none;
    border-color: #4CAF50;
}

.dashboard-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.chart-container {
    width: 100%;
    min-height: 600px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: #666;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 2px dashed #ddd;
}

/* Map container styling */
.map-container {
    width: 100%;
    min-height: 600px;
    margin-top: 30px;
}

/* Optional visual separator between chart and map */
.chart-container::after {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 30px 0;
}
