/* Badge Cards */
.badge-card {
    padding: 20px;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Score Cards */
.score-card {
    text-align: center;
}

.score-label {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
}

/* Progress Bars */
.progress {
    border-radius: 10px;
}

.progress-bar {
    font-size: 14px;
    line-height: 30px;
}

/* Level Display */
.level-display {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
}

/* Stats Cards */
.stat-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: #f8f9fa;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #495057;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
}

/* Review Content Display */
.review-content {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: 'Courier New', monospace;
}

/* Leaderboard */
.leaderboard-rank {
    font-size: 24px;
    font-weight: bold;
    width: 50px;
    text-align: center;
}

.leaderboard-rank.top-1 {
    color: #ffd700;
}

.leaderboard-rank.top-2 {
    color: #c0c0c0;
}

.leaderboard-rank.top-3 {
    color: #cd7f32;
}
