.dex-grid {
    display: grid;
    grid-template-columns: repeat(20, 1fr); /* 20 Pokémon per row */
    gap: 1rem;
    margin: 1rem 0;
}

.dex-cell {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: transform 0.15s;
}

.dex-cell.empty {
    background: var(--color-surface-tertiary);
}

.dex-cell.seen {
    background-color: var(--color-surface-brand);
    opacity: 40%;
}

.dex-cell.caught {
    background-color: var(--color-surface-brand);
}

.dex-cell:hover {
    transform: scale(1.2);
}

.dex-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.dex-stats > .dex-stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 4px;
    background-color: var(--color-surface-secondary);
    padding: 0.5rem 0rem 0.5rem 0rem;
    gap: 1rem;
}
