<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Leaderboard Styling */
.leaderboard-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff; /* White background for the whole list */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Subtle lift */
}

.leaderboard-item {
    display: grid;
    grid-template-columns: .5fr .5fr .5fr; /* Username, points, stats */
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid #ddd;
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 15px 20px;
    transition: background-color 0.2s, transform 0.2s;
}

.leaderboard-item:hover {
    background-color: #d1e3ff;
    transform: translateX(5px); /* Slight shift right on hover */
}

.username {
    font-weight: bold;
    font-size: 1.4em;
    color: #003087; /* FRC blue */
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.points {
    font-size: 1.4em;
    color: #1e7e34; /* Green for points */
    font-weight: bold;
    background-color: rgba(40, 167, 69, 0.2); /* Light green background */
    padding: 6px 15px;
    border-radius: 4px;
    text-align: center;
}

.prediction-stats {
    font-size: 1.2em;
    color: #c82333; /* FRC red for predictions */
    font-style: italic;
    background-color: rgba(220, 53, 69, 0.15); /* Light red bg */
    padding: 6px 12px;
    border-radius: 4px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Top 3 Rankings (optional FRC flair) */
.leaderboard-item:nth-child(1) {
    border-left: 6px solid #ffd700; /* Gold */
    background: linear-gradient(to right, rgba(255, 215, 0, 0.2), transparent); /* Gradient fade */
    font-weight: bold;
}

.leaderboard-item:nth-child(2) {
    border-left: 6px solid #c0c0c0; /* Silver */
    background: linear-gradient(to right, rgba(192, 192, 192, 0.2), transparent);
}

.leaderboard-item:nth-child(3) {
    border-left: 6px solid #cd7f32; /* Bronze */
    background: linear-gradient(to right, rgba(205, 127, 50, 0.2), transparent);
}

.leaderboard-item:nth-child(even) {
    background-color: #e8f0fe;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 600px) {
    .leaderboard-item {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }
    .username, .points {
        font-size: 1em;
    }
}</pre></body></html>