body {
    background: #0a192f;
    color: white;
    font-family: -apple-system, sans-serif;
    margin: 0;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

input, select {
    margin: 10px 20px;
    padding: 10px;
    background: #112240;
    border: none;
    border-radius: 6px;
    color: white;
}

.card {
    background: #112240;
    margin: 20px;
    padding: 20px;
    border-radius: 12px;
}

.stats {
    display: flex;
    gap: 15px;
    margin: 20px;
}

.stat {
    flex: 1;
    background: #112240;
    padding: 15px;
    border-radius: 10px;
}

.stat p {
    color: #4dabf7;
    font-size: 22px;
}

.performance {
    display: flex;
    justify-content: space-around;
}

.session {
    background: #0a192f;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
}

.session:hover {
    background: #1c7ed6;
}

#map {
    height: 400px;
    border-radius: 10px;
}
