/* Deck Stats Display Styles */
.deck-stats-display {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    margin: 0.5rem 0;
    width: 100%;
    max-width: 300px;
}

.deck-stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.deck-stats-table th,
.deck-stats-table td {
    padding: 0.2rem 0.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.deck-stats-table th {
    background-color: var(--secondary-bg);
    color: var(--text-primary);
    font-weight: 600;
}

.deck-stats-table td {
    color: var(--text-primary);
}

.online-percentage-high {
    color: #4ade80; /* Green for high percentage */
}

.online-percentage-medium {
    color: #facc15; /* Yellow for medium percentage */
}

.online-percentage-low {
    color: #f87171; /* Red for low percentage */
}

/* Hide deck stats by default, will be shown when a deck is selected */
#deck-stats-display {
    display: none;
}
