body {
    font-family: 'Inter', sans-serif;
}

/* ADD THIS NEW RULE to hide player names by default */
.case-player {
    display: none;
}

/* Style for the player's chosen case */
.player-case {
    background-color: #f59e0b; /* Tailwind amber-500 */
    color: #111827; /* Tailwind gray-900 */
    border: 2px solid #fbbf24; /* Tailwind amber-400 */
}

/* Style for an opened case */
.opened-case {
    background-color: #374151; /* Tailwind gray-700 */
    opacity: 0.5;
    cursor: not-allowed;
}

.opened-case .case-number {
    display: none;
}

/* This rule will now work as intended */
.opened-case .case-player {
    display: block;
}

/* Style for the player board */
.player-board-player.eliminated {
    text-decoration: line-through;
    opacity: 0.4;
}

/* --- NEW STYLES FOR REPORT CARD --- */
#season-report ul li {
    font-size: 0.95rem;
}

/* Style for empty strength/weakness lists */
#season-report ul:empty::after {
    content: 'None';
    font-style: italic;
    color: #9ca3af; /* Tailwind gray-400 */
}
