/* Premium UI for Speed Skating Tracker */
.sr-athlete-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
    max-width: 600px;
    margin: 1rem auto;
    color: #111;
    font-family: 'Outfit', sans-serif;
}
.sr-athlete-card:hover {
    transform: translateY(-4px);
}
.sr-athlete-card h2 {
    margin-top: 0.5rem;
    font-size: 1.8rem;
    color: #222;
}
.sr-athlete-card p {
    margin: 0.3rem 0;
    line-height: 1.4;
}
.sr-athlete-card .sr-bio {
    margin-top: 1rem;
    background: rgba(255,255,255,0.2);
    padding: 0.8rem;
    border-radius: 8px;
}
/* Chart container */
canvas {
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
}
/* Prediction card */
.sr-prediction-card {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    color: #fff;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    margin: 1rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
